/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #F6ED8E;
    --gold-accent: #F6ED8E;
    --gold-button: #FAF294;
    --gold-gradient-start: #9C8027;
    --gold-gradient-end: #F6ED8E;
    --navy-dark: #041F4E;
    --navy-medium: #041C3E;
    --navy-gradient-start: #092E6C;
    --navy-gradient-end: #041C3E;
    --black: #000000;
    --white: #FFFFFF;
    --text-dark: #3F3C2D;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-gradient-start) 0%, var(--navy-gradient-end) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/hero-bg.png') center/cover no-repeat;
    opacity: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 50%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.22) 0%, rgba(0,0,0,1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.logo-logo {
    width: 100px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 10px rgba(246, 237, 142, 0.3));
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 40px;
    text-transform: uppercase;
    width: 36vh;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(246, 237, 142, 0.5));
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    color: var(--black);
    font-size: 23px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(250, 242, 148, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--black);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    padding: 20px 31px;
    border-radius: 6px;
    background: var(--black);
    border: 2px solid var(--gold-primary);
    display: flex;
    flex-direction: column;
}

.service-card.bordered {
    background: var(--black);
    border: 2px solid var(--gold-primary);
}

.service-card.highlighted {
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    border: none;
}

.service-card.highlighted .service-title,
.service-card.highlighted .service-description {
    color: var(--black);
}

.service-card.highlighted .service-icon svg path {
    fill: var(--black);
}

.service-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 34px;
    height: 34px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 15px;
    line-height: normal;
}

.service-description {
    font-size: 15.098px;
    font-weight: 500;
    color: var(--gold-primary);
    line-height: normal;
    letter-spacing: -0.151px;
}

/* Investment Section */
.investment {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-gradient-start) 0%, var(--navy-gradient-end) 100%);
}

.section-title-white {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.investment .section-title-white {
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-content {
    max-width: 900px;
    margin: 0 auto;
}

.investment-text {
    color: var(--white);
    margin-bottom: 30px;
}

.investment-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.investment-text strong {
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--white);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--black);
}

.testimonials .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.google-logo-header {
    width: 100px;
    height: auto;
}

.testimonial-business {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-stars-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-stars {
    color: #FFA500;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-count-header {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.testimonial-rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #F9FAFB;
    border-radius: 8px;
    margin-bottom: 30px;
}

.rating-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stars-large {
    color: #FFA500;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.review-count {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.testimonial-reviews {
    margin-bottom: 25px;
}

.review-item {
    padding: 20px 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.review-stars {
    color: #FFA500;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding-left: 52px;
}

.testimonial-footer {
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
    text-align: center;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a73e8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.google-reviews-link:hover {
    text-decoration: underline;
}

.google-logo {
    width: 80px;
    margin-bottom: 10px;
}

.testimonial-rating {
    font-size: 13px;
    color: var(--text-dark);
}

.results-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    position: relative;
    padding: 120px 0;
    background: url('assets/images/about-team.png') center/cover no-repeat;
    background-attachment: fixed;
    opacity: 1;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 28, 62, 0.85);
    opacity: 100%;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    color: var(--white);
}

.about-text .section-title-white {
    text-align: center;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--black);
}

.contact .section-title-white {
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(249, 242, 147, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title,
    .section-title-white {
        font-size: 28px;
    }

    .testimonials .container,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .results-title h2 {
        font-size: 36px;
        text-align: center;
    }

    .testimonial-card {
        padding: 30px;
    }

    .rating-number {
        font-size: 48px;
    }

    .stars-large {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    /* Imagem de fundo mobile para Hero */
    .hero::before {
        background: url('assets/images/hero-bg-mobile.png') center/cover no-repeat;
        opacity: 70%;
    }

    /* Overlay mobile */
    .hero-overlay {
        opacity: 100%;
        background: radial-gradient(circle at center, rgba(0,0,0,0.22) 0%, rgba(0,0,0,1) 100%);
    }

    .hero-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title,
    .section-title-white {
        font-size: 24px;
    }

    .about {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .results-title h2 {
        font-size: 32px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .rating-number {
        font-size: 42px;
    }

    .review-text {
        padding-left: 0;
    }

    .testimonial-stars-wrapper {
        flex-direction: column;
        gap: 4px;
    }

    .review-count-header {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 30px;
    }

    .section-title,
    .section-title-white {
        font-size: 20px;
    }

    .service-card {
        padding: 16px 20px;
        width: 40vh;
        margin-left: 1vh;
    }

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 13.5px;
    }

    .service-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 16px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .results-title h2 {
        font-size: 28px;
    }

    .container {
        padding: 0 16px;
    }

    .about {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .google-logo-header {
        width: 80px;
    }

    .testimonial-business {
        font-size: 18px;
    }

    .rating-number {
        font-size: 36px;
    }

    .stars-large {
        font-size: 18px;
    }

    .testimonial-rating-summary {
        padding: 20px;
    }

    .review-name {
        font-size: 15px;
    }

    .review-text {
        font-size: 14px;
    }

    .google-reviews-link {
        font-size: 14px;
    }

    .testimonial-stars {
        font-size: 14px;
    }

    .review-count-header {
        font-size: 12px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
