/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores conforme definições */
    --primary-color: #9C7857;        /* Marrom-dourado para títulos */
    --secondary-color: #CBB6A0;      /* Dourado sutil para elementos de destaque */
    --accent-color: #F3ECE5;         /* Areia claro para fundos */
    --text-dark: #3A2E26;            /* Marrom escuro para textos */
    --text-light: #6B5B4F;           /* Tom intermediário */
    --complementary: #A96C4C;        /* Terracota para botões */
    --white: #FFFFFF;
    --hover-gold: #9C7857;           /* Dourado claro para hover */
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(58, 46, 38, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    max-width: none;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav > a,
.nav-dropdown-toggle {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav > a::after,
.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav > a:hover,
.nav-dropdown-toggle:hover {
    color: var(--primary-color);
}

.nav > a:hover::after,
.nav-dropdown-toggle:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 0.8rem 0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(58, 46, 38, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(156, 120, 87, 0.1);
    color: var(--primary-color);
    padding-left: 2rem;
}

.nav .cta-button {
    background: var(--complementary);  /* Terracota */
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav .cta-button::after {
    display: none;
}

.nav .cta-button:hover {
    background: var(--hover-gold);  /* Dourado claro */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 120, 87, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        rgba(243, 236, 229, 0.95) 0%, 
        rgba(203, 182, 160, 0.6) 30%,
        rgba(243, 236, 229, 0.8) 70%,
        rgba(255, 255, 255, 0.95) 100%);
    padding: 7rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 120, 87, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(169, 108, 76, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-logo {
    width: 350px;
    max-width: none;
    height: auto;
    margin: 0 0 2rem 0;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(58, 46, 38, 0.15));
    object-fit: contain;
}

.hero-pretitle {
    font-size: 1.1rem;
    color: var(--complementary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.especialista-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(58, 46, 38, 0.25);
    transition: transform 0.3s ease;
}

.especialista-photo:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn-primary {
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: var(--complementary);  /* Terracota #A96C4C */
    color: var(--white);
    box-shadow: 0 4px 20px rgba(169, 108, 76, 0.3);
}

.btn-primary:hover {
    background: var(--hover-gold);  /* Dourado claro #9C7857 */
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(156, 120, 87, 0.4);
}

.btn-primary.large {
    padding: 1.3rem 3.2rem;
    font-size: 1.25rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(243, 236, 229, 0.4) 30%,
        rgba(243, 236, 229, 0.5) 70%,
        rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(203, 182, 160, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(203, 182, 160, 0.3);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(58, 46, 38, 0.15);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(156, 120, 87, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--complementary) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(156, 120, 87, 0.25);
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(156, 120, 87, 0.35);
}

.benefit-card h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Service Sections */
.service-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.service-consulares {
    background: linear-gradient(135deg, 
        rgba(243, 236, 229, 0.4) 0%, 
        rgba(203, 182, 160, 0.3) 50%,
        rgba(243, 236, 229, 0.4) 100%);
}

.service-certidoes {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(243, 236, 229, 0.5) 50%,
        rgba(255, 255, 255, 1) 100%);
}

.service-arvore {
    background: linear-gradient(135deg, 
        rgba(203, 182, 160, 0.35) 0%, 
        rgba(243, 236, 229, 0.6) 50%,
        rgba(203, 182, 160, 0.35) 100%);
}

.service-cidadania {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(243, 236, 229, 0.6) 50%,
        rgba(255, 255, 255, 1) 100%);
}

.service-imigracao {
    background: linear-gradient(135deg, 
        rgba(243, 236, 229, 0.5) 0%, 
        rgba(203, 182, 160, 0.4) 50%,
        rgba(243, 236, 229, 0.5) 100%);
}

.service-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 120, 87, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.service-icon-header {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(203, 182, 160, 0.35);
}

.service-icon-header svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-number-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);  /* Dourado sutil */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(203, 182, 160, 0.35);
}

.service-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(203, 182, 160, 0.3);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(58, 46, 38, 0.18);
    background: rgba(255, 255, 255, 0.98);
}

.service-card-full {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(203, 182, 160, 0.3);
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(156, 120, 87, 0.2);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(156, 120, 87, 0.3);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--complementary) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(156, 120, 87, 0.25);
}

.service-icon-large svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.country-flag {
    width: 120px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(58, 46, 38, 0.25);
    transition: transform 0.3s ease;
    display: flex;
}

.service-card:hover .country-flag {
    transform: scale(1.05);
}

/* Bandeira da Itália */
.flag-italia {
    flex-direction: row;
}

.flag-italia .green {
    background: #009246;
    flex: 1;
}

.flag-italia .white {
    background: #F1F2F1;
    flex: 1;
}

.flag-italia .red {
    background: #CE2B37;
    flex: 1;
}

/* Bandeira da Alemanha */
.flag-alemanha {
    flex-direction: column;
}

.flag-alemanha .black {
    background: #000000;
    flex: 1;
}

.flag-alemanha .red {
    background: #DD0000;
    flex: 1;
}

.flag-alemanha .yellow {
    background: #FFCE00;
    flex: 1;
}

/* Bandeira de Portugal */
.flag-portugal {
    flex-direction: row;
}

.flag-portugal .green-pt {
    background: #006600;
    flex: 2;
}

.flag-portugal .red-pt {
    background: #FF0000;
    flex: 3;
}

/* Bandeira da Polônia */
.flag-polonia {
    flex-direction: column;
}

.flag-polonia .white-pl {
    background: #FFFFFF;
    flex: 1;
}

.flag-polonia .red-pl {
    background: #DC143C;
    flex: 1;
}

/* Bandeira da Espanha */
.flag-espanha {
    flex-direction: column;
}

.flag-espanha .red-es {
    background: #AA151B;
    flex: 1;
}

.flag-espanha .yellow-es {
    background: #F1BF00;
    flex: 2;
}

.flag-stripe {
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.service-card p,
.service-card-full p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.85;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(203, 182, 160, 0.25) 0%, 
        rgba(243, 236, 229, 0.6) 50%, 
        rgba(203, 182, 160, 0.25) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156, 120, 87, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.about::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(169, 108, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.9rem;
    color: var(--complementary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, 
        rgba(203, 182, 160, 0.9) 0%, 
        rgba(156, 120, 87, 0.85) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(58, 46, 38, 0.2);
}

.about-placeholder span {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-placeholder p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(58, 46, 38, 0.25);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

/* Differentials Section */
.differentials {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(243, 236, 229, 0.3) 50%,
        rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(203, 182, 160, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.8rem;
    margin: 3.5rem 0;
    position: relative;
    z-index: 1;
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, 
        rgba(243, 236, 229, 0.6) 0%, 
        rgba(255, 255, 255, 0.7) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(203, 182, 160, 0.3);
}

.differential-item:hover {
    transform: translateX(12px);
    box-shadow: 0 10px 30px rgba(58, 46, 38, 0.12);
    background: linear-gradient(135deg, 
        rgba(243, 236, 229, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
}

.check-icon {
    font-size: 1.6rem;
    color: var(--complementary);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.differential-item p {
    font-size: 1.08rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(243, 236, 229, 0.5) 30%,
        rgba(243, 236, 229, 0.6) 70%,
        rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 4rem auto 0;
    padding: 2rem 0;
    position: relative;
    max-width: 100%;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        var(--primary-color) 50%, 
        var(--secondary-color) 100%);
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--complementary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(156, 120, 87, 0.35);
    margin-bottom: 1.5rem;
    border: 4px solid var(--white);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(156, 120, 87, 0.45);
}

.step-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(203, 182, 160, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 46, 38, 0.15);
    z-index: 10;
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(243, 236, 229, 0.35) 0%, 
        rgba(203, 182, 160, 0.25) 30%,
        rgba(243, 236, 229, 0.4) 70%,
        rgba(203, 182, 160, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(169, 108, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

.story-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(203, 182, 160, 0.3);
}

.story-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(58, 46, 38, 0.18);
    background: rgba(255, 255, 255, 0.98);
}

.story-image {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, 
        rgba(203, 182, 160, 0.9) 0%, 
        rgba(156, 120, 87, 0.85) 100%);
    border-radius: 50%;
    margin: 0 auto 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 6px 20px rgba(156, 120, 87, 0.3);
}

.story-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.story-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-location {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(243, 236, 229, 0.6) 30%,
        rgba(243, 236, 229, 0.7) 70%,
        rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(203, 182, 160, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
}

.google-rating {
    text-align: center;
    margin: 2.5rem auto 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(58, 46, 38, 0.15);
    border: 1px solid rgba(203, 182, 160, 0.3);
    position: relative;
    z-index: 1;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--complementary);
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.google-rating p {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 2.3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(58, 46, 38, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(203, 182, 160, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(58, 46, 38, 0.18);
    background: rgba(255, 255, 255, 0.98);
}

.testimonial-rating {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(243, 236, 229, 0.3) 0%, 
        rgba(203, 182, 160, 0.2) 50%,
        rgba(243, 236, 229, 0.35) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 120, 87, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(203, 182, 160, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(58, 46, 38, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(156, 120, 87, 0.05);
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--complementary);
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, 
        rgba(156, 120, 87, 0.95) 0%, 
        rgba(169, 108, 76, 0.9) 50%,
        rgba(156, 120, 87, 0.95) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.cta-final h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-final .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.cta-final .btn-primary:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, 
        rgba(58, 46, 38, 1) 0%, 
        rgba(58, 46, 38, 0.95) 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.footer-map {
    display: flex;
    flex-direction: column;
}

.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.footer-location,
.footer-phone {
    margin-top: 1rem;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .day {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.schedule-item .hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.schedule-item.closed .day,
.schedule-item.closed .hours {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
.nav {
display: none;
}

.mobile-menu-toggle {
display: block;
}

.logo-img {
height: 45px;
}

.hero {
padding: 4rem 0 3rem;
}

.hero-grid {
grid-template-columns: 1fr;
gap: 3rem;
}

.hero-content {
text-align: center;
}

.hero-logo {
margin: 0 auto 2rem;
width: 80%;
max-width: 280px;
}

.hero-title {
font-size: 2rem;
}

.hero-subtitle {
font-size: 1.1rem;
}

.hero-cta {
flex-direction: column;
align-items: center;
}

.especialista-photo {
max-width: 100%;
}

.btn-primary {
width: 100%;
max-width: 300px;
}

.section-title {
font-size: 2rem;
}

.service-content-grid {
grid-template-columns: 1fr;
}

.service-card h3 {
font-size: 1.3rem;
}

.service-card p,
.service-card-full p {
font-size: 1rem;
}

.about-content {
grid-template-columns: 1fr;
}

.process {
    overflow-x: auto;
    padding: 4rem 1rem;
}

.process-timeline {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2rem 1rem;
    gap: 1rem;
    justify-content: flex-start;
}

.process-timeline::before {
    display: none;
}

.process-step {
    min-width: 250px;
    max-width: 250px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1rem;
}

.step-content p {
    font-size: 0.85rem;
}

.differentials-grid {
grid-template-columns: 1fr;
}

.benefits-grid,
.stories-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}

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

.service-category-title {
font-size: 1.5rem;
}

.service-list li,
.service-description {
font-size: 1rem;
}
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.story-card,
.testimonial-card,
.faq-item,
.differential-item {
    animation: fadeInUp 0.6s ease-out;
}
