@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #0F051D;
    --primary-color: #00d4ff;
    --secondary-color: #ff6b9d;
    --text-color: rgba(255, 255, 255, 0.9);
    --text-color-muted: rgba(255, 255, 255, 0.7);
    --card-bg-color: rgba(255, 255, 255, 0.05);
    --card-border-color: rgba(255, 255, 255, 0.1);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveBackground {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    padding: 120px 0;
    border-top: 1px solid var(--card-border-color);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 1000;
    background: rgba(15, 5, 29, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border-color);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-switcher button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.language-switcher button:hover {
    transform: scale(1.2);
    opacity: 1;
}

.language-switcher button.active {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-color);
    border: 1px solid var(--card-border-color);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 15px);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color-muted);
    font-size: 13px;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    background: var(--card-bg-color);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: url('public/hero.png') center center / cover no-repeat fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(15, 5, 29, 0.6) 0%, var(--bg-color) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1s ease-out forwards;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

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

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


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title,
.problem-question {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    line-height: 1.2;
}

.problemas-comuns .section-title {
    font-weight: 700;
}

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


/* Cards */
.problems-grid,
.benefits-grid,
.steps-grid,
.stats-grid {
    display: grid;
    gap: 30px;
}

.problems-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 60px auto;
}

.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}


.problem-card,
.benefit-card,
.step-card,
.stat-item {
    background: var(--card-bg-color);
    border: 1px solid var(--card-border-color);
    border-radius: 4px;
    padding: 35px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
    opacity: 0;
}

/* Removed hover effects */

.problem-card {
    display: flex;
    align-items: center;
    gap: 25px;
    border-left: 3px solid var(--secondary-color);
}

.problem-icon {
    font-size: 24px;
    color: var(--secondary-color);
}

.problem-cost {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 10px;
}

.problem-confirmation,
.worst-part,
.change-cta {
    text-align: center;
    margin: 60px 0;
}

.confirmation-text {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    line-height: 1.2;
}

.worst-part {
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid var(--secondary-color);
    padding: 40px;
    border-radius: 4px;
    max-width: 800px;
    margin: 40px auto;
}

.worst-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.worst-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.worst-ending {
    font-style: italic;
    color: var(--text-color-muted);
}

.change-title {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    line-height: 1.2;
}

.btn-change {
    padding: 20px 40px;
    font-size: 18px;
}


.step-number {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.benefit-description,
.step-description {
    color: var(--text-color-muted);
}

.step-card {
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--text-color-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(15, 5, 29, 0.1));
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-color-muted);
    max-width: 600px;
    margin: 20px auto 40px;
    /* Add margin */
}

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

.btn-cta-primary {
    background: white;
    color: #000;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0416, #1a0b2e);
    padding: 60px 0 40px 0;
    color: white;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-nav {
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(0, 212, 255, 0.2);
    margin: 30px 0 20px 0;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 30px;
}

.footer-office {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-office i {
    color: #00d4ff;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-office strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-office a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-office a:hover {
    color: #00d4ff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social-icon:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        padding-right: 0;
        border-right: none;
    }

    .footer-addresses {
        padding-left: 0;
    }
}