/* GLOBAL */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.45; /* microtipografia */
    letter-spacing: 0.2px; /* microtipografia */
}

/* ANIMAÇÕES PREMIUM */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(18px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fade-section {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
}

/* HEADER */
.header {
    text-align: center;
    padding: 28px 20px 40px;
}

.logo {
    width: 220px;
    height: auto;
    margin-bottom: 14px;
    animation: fadeUp 0.8s ease forwards;
}

.title {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    animation: fadeUp 1s ease forwards;
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 6px;
    animation: fadeUp 1.1s ease forwards;
}

/* CTA BUTTONS */
.cta-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1.2s ease forwards;
}

.cta-button {
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.sms {
    background: #000;
    color: #fff;
}

.sms:hover {
    background: #333;
}

.email {
    background: #f4f4f4;
    color: #000;
    border: 2px solid #000;
}

.email:hover {
    background: #e8e8e8;
}

/* STUDIO HERO IMAGE */
.studio-hero {
    margin: 30px auto 0;
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeUp 1.3s ease forwards;
}

.studio-hero img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

/* ABOUT */
.about {
    padding: 45px 20px 35px;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 35px;
    align-items: center;
}

.about h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.about-text p {
    margin-bottom: 10px;
    color: #333;
    animation: fadeUp 0.9s ease forwards;
}

.about-photo img {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    animation: fadeUp 1.1s ease forwards;
}

/* DIFFERENTIALS */
.differentials {
    padding: 45px 20px;
    background: #fafafa;
    text-align: center;
}

.differentials h2 {
    font-size: 28px;
    margin-bottom: 22px;
}

.diff-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.diff-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 16px 18px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    animation: fadeUp 0.8s ease forwards;
}

.diff-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.diff-item p {
    font-size: 15px;
    color: #444;
}

/* GOOGLE REVIEWS */
.reviews {
    padding: 45px 20px;
    text-align: center;
}

.reviews h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.reviews-intro {
    max-width: 700px;
    margin: 0 auto 28px;
    color: #444;
}

.reviews-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.review-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 16px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    animation: fadeUp 0.8s ease forwards;
}

.stars {
    font-size: 20px;
    color: #f4b400;
    margin-bottom: 8px;
}

.review-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.review-author {
    font-size: 14px;
    color: #777;
}

/* RESULTS */
.results {
    padding: 45px 20px;
    text-align: center;
}

.results h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.results-intro {
    max-width: 700px;
    margin: 0 auto 28px;
    color: #444;
}

.results-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.result-item img {
    width: 75%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border-radius: 12px;
    object-fit: contain;
    animation: fadeUp 0.9s ease forwards;
}

.result-item p {
    font-size: 15px;
    color: #444;
}

/* STUDIO / EQUIPMENT */
.studio {
    padding: 45px 20px;
    text-align: center;
    background: #fafafa;
}

.studio h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.studio-intro {
    max-width: 700px;
    margin: 0 auto 28px;
    color: #444;
}

.studio-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.studio-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    margin-bottom: 10px;
    animation: fadeUp 0.9s ease forwards;
}

.studio-item p {
    font-size: 15px;
    color: #444;
}

/* LOCATION */
.location {
    padding: 45px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.location h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.location p {
    font-size: 1.1rem;
    margin-bottom: 22px;
    color: #555;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: fadeUp 1s ease forwards;
}

/* SERVICE AREAS */
.service-areas {
    padding: 45px 20px;
    text-align: center;
    background: #fafafa;
}

.service-areas-inner {
    max-width: 900px;
    margin: 0 auto;
}

.service-areas h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-areas-highlight {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
}

.service-areas-list {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

/* FINAL CTA */
.final-cta {
    padding: 45px 20px 55px;
    text-align: center;
}

.final-cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto 22px;
    color: #444;
}

/* MOBILE PREMIUM REFINEMENTS */
@media (max-width: 600px) {

    section {
        padding: 35px 18px !important;
    }

    .header {
        padding: 22px 18px 30px !important;
    }

    .logo {
        width: 180px;
        margin-bottom: 10px;
    }

    .title {
        font-size: 26px;
    }

    .subtitle {
        font-size: 15px;
        margin-top: 4px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    p {
        line-height: 1.38;
        margin-bottom: 8px;
    }

    .review-item,
    .diff-item,
    .studio-item {
        padding: 14px 12px 16px;
    }

    .results-grid,
    .reviews-grid,
    .diff-grid,
    .studio-grid {
        gap: 18px;
    }
}
