/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: #00324B;
    --primary-variation-1: #005C8A;
    --primary-variation-2: #62A8CC;
    
    /* Accent Colors */
    --accent: #FF8957;
    --accent-variation-1: #FFB494;
    --accent-variation-2: #FFD9C9;
    
    /* Neutral Colors */
    --black: #1A1A1A;
    --gray: #7B8991;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 60px 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile touch improvements */
* {
    -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: rgba(255, 137, 87, 0.2);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Header logo - convert white logo to dark for visibility on white background */
.header .logo-image {
    filter: brightness(0) saturate(100%) invert(0);
    opacity: 0.9;
}

.instagram-link {
    color: var(--primary);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.instagram-link:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variation-1) 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 168, 204, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 137, 87, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(5deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 137, 87, 0.3);
}

.btn-primary:hover {
    background: var(--accent-variation-1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 137, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-phone {
    background: var(--primary);
    color: var(--white);
}

.btn-phone:hover {
    background: var(--primary-variation-1);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-top: -24px;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variation-1) 100%);
    color: var(--white);
    padding: 50px 20px;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.proof-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.proof-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) translateZ(0);
    -webkit-transform: translateY(-5px) translateZ(0);
}

.proof-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.proof-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 1;
    line-height: 1.3;
}

.proof-description {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

/* Section Styles */

/* Benefits Section */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefits .section-title {
    margin-bottom: 16px;
}

.benefits-highlight {
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    padding: 1.75rem 1.5rem 1.85rem;
    text-align: center;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        165deg,
        var(--primary) 0%,
        #002235 42%,
        var(--primary-variation-1) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 12px 40px rgba(0, 36, 55, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.benefits-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--accent);
}

.benefits-highlight__label {
    margin: 0 0 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.benefits-highlight__intro {
    margin: 0 0 0.35rem;
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.benefits-highlight__year {
    font-weight: 700;
    color: var(--primary-variation-2);
}

.benefits-highlight__figure {
    margin: 0 0 0.35rem;
    font-size: clamp(1.85rem, 5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.benefits-highlight__outro {
    margin: 0;
    font-size: clamp(1rem, 2.4vw, 1.12rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.benefits-more {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 0;
}

.benefits-grid--compact {
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .benefits-grid--compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 50, 75, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 50, 75, 0.1);
    border-color: var(--primary-variation-2);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    padding: 32px 24px;
    border-radius: 16px;
    border: 2px solid rgba(0, 50, 75, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-variation-1) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 50, 75, 0.15);
    border-color: var(--primary-variation-2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-variation-1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 137, 87, 0.3);
}

.service-icon {
    width: 36px;
    height: 36px;
    color: var(--white);
    stroke-width: 2.5;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing {
    background: var(--white);
}

.pricing-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 14px;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variation-1) 100%);
    border-radius: 24px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 50, 75, 0.3);
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.pricing-percent {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.pricing-label {
    font-size: 18px;
    opacity: 0.9;
}

.pricing-description {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.7;
}

.pricing-card {
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 137, 87, 0.4);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.pricing-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.85;
    font-style: italic;
}




/* Quick CTA Section */
.quick-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-variation-1) 100%);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

.quick-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.quick-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.quick-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.sticky-cta.show {
    display: block;
}

@media (max-width: 768px) {
    .sticky-cta {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    
    .btn-sticky {
        width: 100%;
        border-radius: 12px;
        justify-content: center;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-sticky {
    padding: 16px 24px;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(255, 137, 87, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .btn-sticky {
        border-radius: 12px;
        width: 100%;
    }
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 137, 87, 0.5);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variation-1) 100%);
    color: var(--white);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-align: center;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    text-align: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.contact-alternative {
    margin-top: 24px;
    text-align: center;
}

.contact-info {
    font-size: 16px;
    opacity: 0.9;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-image {
    height: 60px;
    /* Logo branca já está perfeita para o footer escuro */
}

.footer-tagline {
    color: var(--gray);
    font-size: 14px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 20px;
    }
    
    .hero {
        padding: 60px 20px 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 20rem;
        padding: 14px 22px;
        font-size: 16px;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .hero-badges {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .proof-icon {
        font-size: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        width: 30px;
        height: 30px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-percent {
        font-size: 56px;
    }
    
    .quick-cta-content h2 {
        font-size: 28px;
    }
    
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .hero {
        padding: 40px 20px 30px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-cta .btn {
        max-width: 18.5rem;
        padding: 13px 20px;
        font-size: 15px;
    }
    
    .hero-badge {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 28px;
    }
    
    .benefit-card {
        padding: 24px 18px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .service-card {
        padding: 24px 18px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        width: 28px;
        height: 28px;
    }
    
    .quick-cta-content h2 {
        font-size: 24px;
    }
    
    .quick-cta-content p {
        font-size: 15px;
    }
    
    .pricing-card {
        padding: 28px 18px;
    }
    
    .pricing-percent {
        font-size: 48px;
    }
    
    .pricing-label {
        font-size: 14px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 15px;
    }
    
    .contact-form {
        padding: 20px 16px;
    }
    
    .btn-sticky {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.benefit-card,
.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-badges {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-cta,
    .contact-options,
    .footer {
        display: none;
    }
}
