/* ===== VARIABLES ===== */
:root {
    --primary-color: #ea580c;
    --primary-dark: #c2410c;
    --primary-light: #f97316;
    --secondary-color: #0ea5e9;
    --accent-color: #ea580c;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-slate: #1e293b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section__title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav__overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.nav {
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.nav__logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 3rem;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-weight: 700;
    color: var(--text-color);
}

.nav__list {
    display: flex;
    column-gap: 2.5rem;
}

.nav__link {
    position: relative;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero--dark {
    background: var(--bg-dark);
}

.hero__bg-code {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: 
        linear-gradient(90deg, rgba(234,88,12,0.03) 1px, transparent 1px),
        linear-gradient(rgba(234,88,12,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__bg-code::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 50% at 70% 40%, rgba(234,88,12,0.12), transparent),
                radial-gradient(ellipse 60% 40% at 20% 80%, rgba(14,165,233,0.08), transparent);
    pointer-events: none;
}

.hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.95) 100%);
    pointer-events: none;
}

.hero__dashboard-mock {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
}

.hero__code-blur {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    background: rgba(30,41,59,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    filter: blur(2px);
    line-height: 1.8;
    white-space: pre;
    overflow: hidden;
}

.hero__code-blur code {
    color: rgba(234,88,12,0.9);
}

@media screen and (max-width: 968px) {
    .hero {
        padding-top: 6rem;
    }
    .hero__code-blur {
        font-size: 0.75rem;
        padding: 1rem 1.25rem;
    }
}

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

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero__title {
    font-family: 'Inter', sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero--dark .hero__title {
    color: #fff;
}

.highlight {
    color: var(--primary-light);
}

.hero__description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(234,88,12,0.35);
    background: var(--primary-light);
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--secondary {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.35);
}

.btn--secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.hero__stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1.4s ease-out 0.8s both;
}

.stat__item {
    text-align: left;
}

.stat__number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: var(--primary-light);
}

.stat__label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: float-card 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.floating-card p {
    font-weight: 600;
    font-size: 1.125rem;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SERVIÇOS SECTION ===== */
.servicos {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-color) 100%);
    position: relative;
}

.servicos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.servico__card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.servico__card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

.servico__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.servico__card:hover .servico__card-bg {
    opacity: 0.05;
}

.servico__card:hover .servico__icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scale(1.1) rotate(5deg);
}

.servico__number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--bg-light);
    line-height: 1;
    transition: var(--transition);
}

.servico__card:hover .servico__number {
    color: var(--primary-color);
    opacity: 0.1;
}

.servico__icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.servico__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.servico__description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.servico__features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.servico__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.servico__features svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.servico__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.servico__link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

.servico__tagline {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.solucao__card .servico__title {
    font-family: 'Inter', sans-serif;
}

.solucao__card .servico__features li {
    align-items: flex-start;
}

.solucao__card .servico__features li::before {
    content: '→';
    color: var(--primary-color);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* ===== CASOS DE SUCESSO ===== */
.casos {
    background: var(--bg-light);
}

.casos__grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.caso__card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: var(--transition);
}

.caso__card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.caso__title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.caso__desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.caso__entregas {
    list-style: none;
    margin-bottom: 1.5rem;
}

.caso__entregas li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.caso__entregas li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* ===== VESTIDO DOURADO SECTION ===== */
.vestido-dourado {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.vestido-dourado__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    z-index: 0;
}

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

.vestido-dourado__badge {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: #fff;
}

.vestido-dourado__title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vestido-dourado__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.vestido-dourado__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.vestido-dourado__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vd-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vd-feature__icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.vd-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.vd-feature p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.vestido-dourado__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn--vd-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn--vd-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.btn--vd-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--vd-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.vestido-dourado__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vd-visual__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.vd-visual__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.vd-visual__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.vd-visual__card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.vd-visual__list {
    list-style: none;
    margin-bottom: 2rem;
}

.vd-visual__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
}

.vd-visual__list svg {
    color: #fbbf24;
    flex-shrink: 0;
}

.vd-visual__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.vd-price__from {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.vd-price__value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
}

.vd-price__period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SOBRE SECTION ===== */
.sobre {
    background-color: var(--bg-color);
    position: relative;
}

.sobre__content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.sobre__description strong {
    color: var(--text-color);
    font-weight: 600;
}

.sobre__values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value__item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light), white);
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.value__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.value__item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value__item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CONTATO SECTION ===== */
.contato {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
    position: relative;
    overflow: hidden;
}

.contato__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.contato__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info__card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.info__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.info__card:hover .info__icon {
    transform: scale(1.1) rotate(5deg);
}

.info__card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.info__card p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.info__card a {
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 600;
}

.info__card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.whatsapp__card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 3.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-2xl);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 550px;
    position: relative;
    overflow: hidden;
}

.whatsapp__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.whatsapp__icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.whatsapp__icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp__card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.whatsapp__description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.btn--whatsapp {
    background-color: white;
    color: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

.btn--whatsapp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: #f0f0f0;
}

.whatsapp__phone {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer__logo {
    height: 3.5rem;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer__slogan {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    line-height: 1.7;
}

.footer__links h4,
.footer__services h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer__links ul,
.footer__services ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-weight: 500;
}

.footer__links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer__services li {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-2xl);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__stats {
        justify-content: center;
    }

    .section__title {
        font-size: 2.5rem;
    }

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

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

    .vestido-dourado__title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background-color: white;
        padding: 5rem 0 0 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1002;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__overlay.active {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        row-gap: 1.5rem;
    }

    .nav__link {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        display: block;
        -webkit-tap-highlight-color: transparent;
    }

    .nav__toggle,
    .nav__close {
        display: block;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-light);
        border-radius: 50%;
        cursor: pointer;
    }

    .hero {
        padding-top: 6rem;
        min-height: auto;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__visual {
        height: 350px;
        margin-top: 2rem;
    }

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

@media screen and (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero {
        padding-top: 5.5rem;
        padding-bottom: 3rem;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero__description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-top: 2rem;
    }

    .stat__number {
        font-size: 2rem;
    }

    .stat__label {
        font-size: 0.8125rem;
    }

    .hero__visual {
        height: 280px;
    }

    .floating-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .floating-card p {
        font-size: 0.9375rem;
    }

    .section__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section__subtitle {
        font-size: 1rem;
    }

    .section__badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .servico__card {
        padding: 2rem 1.5rem;
    }

    .servico__icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }

    .servico__title {
        font-size: 1.5rem;
    }

    .servico__description {
        font-size: 0.9375rem;
    }

    .servico__number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .sobre__values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .value__item {
        padding: 2rem 1.5rem;
    }

    .value__icon {
        font-size: 2.5rem;
    }

    .value__item h4 {
        font-size: 1.25rem;
    }

    .contato__content {
        gap: 2rem;
    }

    .info__card {
        padding: 2rem 1.5rem;
    }

    .info__icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.25rem;
    }

    .info__card h3 {
        font-size: 1.25rem;
    }

    .info__card p {
        font-size: 1rem;
    }

    .whatsapp__card {
        padding: 2rem 1.5rem;
    }

    .whatsapp__icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 1.5rem;
    }

    .whatsapp__card h3 {
        font-size: 1.5rem;
    }

    .whatsapp__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn--whatsapp {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }

    .whatsapp__phone {
        font-size: 1.25rem;
    }

    .vestido-dourado__title {
        font-size: 2rem;
    }

    .vestido-dourado__subtitle {
        font-size: 1.25rem;
    }

    .vestido-dourado__description {
        font-size: 1rem;
    }

    .vestido-dourado__features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .vd-feature__icon {
        font-size: 2rem;
    }

    .vd-feature h4 {
        font-size: 1rem;
    }

    .vd-feature p {
        font-size: 0.875rem;
    }

    .vestido-dourado__cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn--vd-primary,
    .btn--vd-secondary {
        width: 100%;
        justify-content: center;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }

    .vd-visual__card {
        padding: 2rem 1.5rem;
    }

    .vd-visual__card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .vd-visual__list li {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .vd-price__value {
        font-size: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer__content {
        gap: 2rem;
    }

    .footer__logo {
        height: 2.5rem;
    }

    .scroll-top {
        width: 3rem;
        height: 3rem;
        bottom: 1.5rem;
        right: 1.5rem;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Fix para elementos clicáveis no mobile */
    a, button {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
}
