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

:root {
    /* New Theme Colors */
    --primary-color: #23D5BF; /* Cor principal (verde/ciano) */
    --secondary-color: #003453; /* Cor secundária (azul escuro) */
    --text-light: #c0d0e0; /* Texto claro */
    --text-white: #ffffff; /* Texto branco */
    --bg-dark: #003453; /* Fundo escuro */
    --bg-darker: #002a42; /* Fundo mais escuro */
    --border-color: #004a6e; /* Cor da borda */
    --whatsapp-green: #25d366; /* Verde WhatsApp (mantido) */
    --whatsapp-dark: #128c7e; /* Verde escuro WhatsApp (mantido) */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-dark);
    overflow-x: hidden;
}

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

/* Header - Não sticky */
.header {
    width: 100%;
    background: rgba(0, 52, 83, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--primary-color);
}

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

.header-logo {
    max-width: 200px;
    height: auto;
}

.footer-logo {
    max-width: 180px; /* Aumentado mais um pouco */
    height: auto;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
}

.nav a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(35, 213, 191, 0.3);
    text-shadow: none;
}

/* Hero Section - Padding normal */
.hero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(35, 213, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(35, 213, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(35, 213, 191, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

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

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.6;
    z-index: -1;
    box-shadow: 0 0 10px var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-header .cta-button {
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.cta-button {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: transparent;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button a {
    text-decoration: none;
    color: inherit;
}

.cta-button:hover a {
    color: var(--text-white);
    text-decoration: none;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(35, 213, 191, 0.4);
}

.cta-button.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(35, 213, 191, 0.6);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(35, 213, 191, 0.4);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--border-color);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(35, 213, 191, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    right: 20%;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 40%;
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    right: 10%;
    animation-delay: -4s;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-white);
}

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

/* Services Section */
.services {
    padding: 60px 0; /* Diminuído de 80px */
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem; /* Diminuído de 4rem */
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; /* Diminuído de 2rem */
}

.service-card {
    background: var(--border-color);
    border: 1px solid var(--primary-color);
    padding: 2rem; /* Diminuído de 2.5rem */
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(35, 213, 191, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(35, 213, 191, 0.3);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(35, 213, 191, 0.4);
    margin-bottom: 1rem; /* Espaçamento entre ícone e título */
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--bg-dark);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
}

/* Differentials Section */
.differentials {
    padding: 60px 0; /* Diminuído de 80px */
    background: var(--bg-darker);
}

.differentials-content {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Diminuído de 3rem */
}

.differential-item {
    display: flex;
    gap: 1.5rem; /* Diminuído de 2rem */
    align-items: flex-start;
    padding: 1.5rem; /* Diminuído de 2rem */
    background: var(--border-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.differential-item:hover {
    box-shadow: 0 0 30px rgba(35, 213, 191, 0.2);
    transform: translateX(10px);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(35, 213, 191, 0.4);
}

.differential-icon i {
    font-size: 2rem;
    color: var(--bg-dark);
}

.differential-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem; /* Diminuído de 1rem */
    color: var(--primary-color);
}

.differential-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    word-wrap: break-word;
    hyphens: auto;
}

/* Pricing Section */
.pricing {
    padding: 60px 0; /* Diminuído de 80px */
    background: var(--bg-dark);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem; /* Diminuído de 2rem */
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--border-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem; /* Diminuído de 2.5rem */
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(35, 213, 191, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.pricing-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(35, 213, 191, 0.3);
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
}

.additional {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    list-style: none;
}

.pricing-features li i {
    color: var(--primary-color);
}

/* Countries Section */
.countries {
    padding: 60px 0; /* Diminuído de 80px */
    background: var(--bg-darker);
}

.world-map-container {
    text-align: center;
    margin-bottom: 2rem;
}

.world-map {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(35, 213, 191, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 60px 0; /* Diminuído de 80px */
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* WhatsApp Button - Efeito pulsante corrigido */
.whatsapp-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--whatsapp-green);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(37, 211, 102, 0.8);
}

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

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 3px solid var(--whatsapp-green);
    border-radius: 50px;
    animation: pulse 2s infinite;
    opacity: 0;
    pointer-events: none;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 2rem; /* Diminuído de 4rem */
    border-top: 1px solid var(--primary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap


: 1.5rem; /* Diminuído de 2rem */
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Ocultar menu no mobile */
    .nav {
        display: none !important;
    }

    .header .container {
        justify-content: center;
    }

    .header-logo {
        max-width: 150px;
    }

    .footer-logo {
        max-width: 150px; /* Aumentado para mobile também */
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* Diminuído ainda mais no mobile */
    }

    .service-card {
        padding: 1.5rem; /* Diminuído no mobile */
        text-align: left;
    }

    .service-card h3 {
        color: var(--text-white) !important;
        font-size: 1.2rem;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
        margin-bottom: 0.8rem; /* Diminuído */
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .service-icon {
        margin-bottom: 0.8rem; /* Diminuído */
    }

    /* Differential items no mobile */
    .differentials-content {
        gap: 1.5rem; /* Diminuído no mobile */
    }

    .differential-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem; /* Diminuído no mobile */
        gap: 1rem;
    }

    .differential-text h3 {
        color: var(--text-white) !important;
        font-size: 1.3rem;
        margin-bottom: 0.6rem; /* Diminuído */
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .differential-text p {
        font-size: 1rem;
        line-height: 1.6;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem; /* Diminuído no mobile */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem; /* Diminuído no mobile */
    }

    .footer-section ul {
        padding-left: 0;
    }

    .whatsapp-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        gap: 0.8rem;
    }

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

    .world-map {
        max-width: 95%;
    }

    /* Seções com padding reduzido no mobile */
    .services,
    .differentials,
    .pricing,
    .countries,
    .cta-section {
        padding: 40px 0; /* Diminuído no mobile */
    }

    .footer {
        padding: 2rem 0 1.5rem; /* Diminuído no mobile */
    }
}

.featured-differential {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(35, 213, 191, 0.2);
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-darker));
}

.featured-differential .differential-icon {
    animation: shake 0.8s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.cta-button:hover {
    color: white;
}

