/* 
 * Theme: Premium Luxury for Dr. Wanda Castro (Iteration 3)
 * Colors: 
 * - Background Dark: #121212
 * - Background Light: #ffffff
 * - Surface Dark: #1e1e1e
 * - Surface Light: #f8f9fa
 * - Primary (Gold): #D4AF37
 * - Text Dark: #f5f5f5
 * - Text Light: #333333
 */

:root {
    --bg-dark: #121212;
    --bg-light: #ffffff;
    --surface-dark: #1e1e1e;
    --surface-light: #f9f9f9;

    --primary-color: #D4AF37;
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #F2D06B 50%, #D4AF37 100%);
    --primary-glow: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);

    --text-dark: #f5f5f5;
    --text-light: #333333;
    --text-muted-dark: #b0b0b0;
    --text-muted-light: #666666;

    --border-color: rgba(212, 175, 55, 0.3);
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header p {
    font-size: 1rem;
}

/* Lighting Effects */
.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: var(--primary-glow);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.85rem;
    position: relative;
    overflow: visible;
}

.btn::after {
    content: '→';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover::after {
    background-color: rgba(0, 0, 0, 0.25);
    transform: translateX(3px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary::after {
    background-color: rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.btn-secondary:hover::after {
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateX(3px);
}

.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
    border-radius: 50px;
}

.btn-whatsapp-small {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 0.8rem;
    border-radius: 5px;
}

/* Header */
.header {
    background-color: rgba(18, 18, 18, 0.9);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 50px;
    opacity: 0.9;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    color: var(--primary-color) !important;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: #000 !important;
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 0;
    display: flex;
    align-items: flex-end;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url('../imagens/logocoloridafundotransparente.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    /* Wider for hero */
}

.hero-text {
    padding-bottom: 80px;
    padding-left: 5%;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted-dark);
    margin-bottom: 50px;
    max-width: 90%;
    letter-spacing: 0.5px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    font-weight: 400;
}

.hero-location i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.hero-image img {
    max-height: 75vh;
    width: auto;
    filter: drop-shadow(0 0 80px rgba(212, 175, 55, 0.15)) drop-shadow(0 0 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    /* Gradient fade effect from bottom to top */
    mask-image: linear-gradient(to top, transparent 0%, black 15%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 100%);
}

/* Hero Floating Badges */
.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(15px);
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 10;
    opacity: 0.85;
}

.hero-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.badge-icon {
    width: 38px;
    height: 38px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

.badge-desc {
    font-size: 0.7rem;
    color: rgba(176, 176, 176, 0.7);
}

/* Badge Positioning */
.hero-badge-1 {
    top: 15%;
    left: -50px;
}

.hero-badge-2 {
    top: 45%;
    right: -60px;
}

.hero-badge-3 {
    bottom: 25%;
    left: -40px;
}

/* Theme Utilities */
.section-light {
    background-color: var(--bg-light);
    color: var(--text-light);
}

.section-light p {
    color: var(--text-muted-light);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

.section-dark p {
    color: var(--text-muted-dark);
}

/* Publico Section (Light - Redesigned) */
.publico {
    background: #ffffff;
    position: relative;
}

.publico::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%);
    background-position: 20px 0, 20px 0, 0 0, 0 0;
    background-size: 40px 40px;
    background-repeat: repeat;
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
    pointer-events: none;
}

.publico::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.04), transparent 50%),
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.03), transparent 50%);
    pointer-events: none;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 50%;
    transform: translate(40%, -40%);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: translate(30%, -30%);
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
}

.feature-content h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Section (Dark) */
.servicos {
    background-color: var(--bg-dark);
    position: relative;
}

/* Services Watermark */
.servicos::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url('../imagens/logocoloridafundotransparente.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.service-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-info h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Metodologia Section (Light) */
.metodologia {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.metodologia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%);
    background-position: 25px 0, 25px 0, 0 0, 0 0;
    background-size: 50px 50px;
    background-repeat: repeat;
    mask-image: linear-gradient(135deg, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(135deg, black 80%, transparent 100%);
    pointer-events: none;
}

.metodologia::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.metodologia-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.metodologia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top-color: var(--primary-color);
}

.metodologia-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.metodologia-card:hover .metodologia-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
}

.metodologia-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.metodologia-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.metodologia-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.metodologia-highlight {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: #000;
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.highlight-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.highlight-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Sobre Section (Dark - Overlap) */
.sobre {
    background-color: var(--bg-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background-image: url('../imagens/logocoloridafundotransparente.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
}

.sobre-image-wrapper {
    position: relative;
    z-index: 1;
}

.sobre-image-wrapper img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    filter: grayscale(5%) contrast(105%);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.sobre-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(20px);
    padding: 50px 45px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    margin-left: -200px;
    /* Overlap */
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sobre-card h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.sobre-card .subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sobre-card p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.sobre-card strong {
    color: #fff;
    font-weight: 700;
}

/* Resultados Section (Light - Modern Gallery) */
.resultados {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.resultados::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%);
    background-position: 30px 0, 30px 0, 0 0, 0 0;
    background-size: 60px 60px;
    background-repeat: repeat;
    mask-image: linear-gradient(135deg, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(135deg, black 70%, transparent 100%);
    pointer-events: none;
}

.resultados::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.gallery-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay span {
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-overlay span {
    transform: translateY(0);
}

.disclaimer {
    text-align: center;
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.6;
}

/* Jornada Section (Dark - Steps) */
.jornada {
    background-color: var(--bg-dark);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.step-card:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.step-card:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

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

.step-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: rgba(212, 175, 55, 0.3);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.step-card:hover .step-num {
    color: var(--primary-color);
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.step-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: rgba(245, 245, 245, 0.85);
    font-weight: 300;
}

/* Footer (Redesigned) */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
    padding: 80px 0 40px;
    border-top: 2px solid var(--primary-color);
    color: #fff;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    position: relative;
}

.footer-brand img {
    height: 90px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.footer-brand:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
}

.footer-brand p {
    color: var(--text-muted-dark);
    max-width: 380px;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-brand .tagline {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.05);
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-contact h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: rgba(245, 245, 245, 0.9);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-contact p:last-child {
    border-bottom: none;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.copyright {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.copyright a:hover {
    color: #F2D06B;
    text-decoration: underline;
}

/* Chamada Final Section */
.chamada-final {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.chamada-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%);
    background-position: 30px 0, 30px 0, 0 0, 0 0;
    background-size: 60px 60px;
    background-repeat: repeat;
    mask-image: linear-gradient(135deg, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(135deg, black 70%, transparent 100%);
    pointer-events: none;
}

.chamada-final::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.chamada-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chamada-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chamada-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-muted-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chamada-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp::after {
    background-color: rgba(0, 0, 0, 0.2);
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-bubble {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 250px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.whatsapp-widget:hover .whatsapp-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-bubble-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
}

.whatsapp-bubble-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    font-style: italic;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:hover::before {
    width: 100%;
    height: 100%;
}

.whatsapp-button i {
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sobre-image-wrapper {
        order: 2;
        text-align: center;
    }

    .sobre-image-wrapper img {
        max-width: 350px;
        margin: 0 auto;
    }

    .sobre-card {
        order: 1;
        margin-left: 0;
        margin-top: 0;
        padding: 20px 10px;
        text-align: center;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border-radius: 15px;
    }

    .sobre-card h2 {
        text-align: center;
        margin-bottom: 10px;
    }

    .sobre-card .subtitle {
        text-align: center;
        display: block;
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .metodologia-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chamada-buttons {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: #121212;
        padding: 120px 40px;
        transition: var(--transition);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }

    .hero {
        padding-top: 140px;
        display: block;
        height: auto;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        display: block;
        padding-bottom: 0;
    }

    .hero-text {
        padding-left: 0;
        text-align: center;
        padding-bottom: 60px;
    }

    .hero-image {
        justify-content: center;
        margin-bottom: -40px;
    }

    .hero-image img {
        max-height: 500px;
    }

    .hero-badges {
        display: none;
    }

    .hero-badge {
        display: none !important;
    }

    .hero-badge-1,
    .hero-badge-2,
    .hero-badge-3 {
        display: none !important;
    }

    .hero-location {
        text-align: center;
        display: block;
        white-space: nowrap;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .hero-location i {
        margin-right: 5px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .sobre-card {
        margin-top: 20px;
    }

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

    .feature-card {
        padding: 25px 20px;
    }

    .service-item {
        flex-direction: row;
        text-align: left;
        padding: 25px 20px;
        align-items: center;
        gap: 20px;
    }

    .service-icon {
        margin-bottom: 0;
        margin-right: 0;
        flex-shrink: 0;
    }

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

    .step-card {
        padding: 30px 25px;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-brand img {
        height: 70px;
    }

    .footer-contact {
        padding: 25px 20px;
    }

    .footer-contact h3 {
        font-size: 1.3rem;
    }

    .chamada-text h2 {
        font-size: 2rem;
    }

    .chamada-text p {
        font-size: 1rem;
    }

    .whatsapp-bubble {
        display: none;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 1.5rem;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: calc(100vw - 40px);
    }

    body {
        overflow-x: hidden;
    }

    html {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        width: 90%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-text h2 {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .hero-text .btn {
        margin-bottom: 15px;
    }

    .hero-location {
        margin-top: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .gallery-modern {
        grid-template-columns: 1fr;
    }

    .footer-brand img {
        height: 60px;
    }

    .chamada-text h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.75rem;
        border-radius: 20px;
        letter-spacing: 0.3px;
        line-height: 1.2;
        min-height: auto;
    }
}