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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: white;
    background: #1a0b2e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 1000;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.logo img {
    height: 32px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo:hover img {
    opacity: 0.8;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #00d4ff;
}

.nav-menu li.active a,
.nav-menu li a:hover {
    color: #00d4ff;
}

.nav-menu li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    border-radius: 1px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
}

.dropdown > a::after {
    content: '▼';
    font-size: 9px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 11, 46, 0.98);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.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 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border-left-color: #00d4ff;
    padding-left: 30px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('public/img_3.png') center center/cover no-repeat,
                radial-gradient(ellipse at center, #2d1b69 0%, #1a0b2e 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(138, 43, 226, 0.3) 0%,
        rgba(75, 0, 130, 0.3) 20%,
        rgba(25, 25, 112, 0.3) 40%,
        rgba(0, 191, 255, 0.2) 70%,
        rgba(255, 20, 147, 0.2) 100%);
    z-index: 1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.1;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    opacity: 0.3;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    opacity: 0.2;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 80%;
    animation-delay: 4s;
    opacity: 0.4;
}

.particle:nth-child(4) {
    width: 8px;
    height: 8px;
    top: 80%;
    left: 70%;
    animation-delay: 6s;
    opacity: 0.15;
}

.particle:nth-child(5) {
    width: 5px;
    height: 5px;
    top: 15%;
    left: 60%;
    animation-delay: 8s;
    opacity: 0.25;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: white;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero-features li i {
    color: #00d4ff;
    font-size: 16px;
    width: 20px;
}

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

.btn {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.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: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.3));
    border-radius: 20px;
}

/* Problemas Comuns Section */
.problemas-comuns {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #1a0b2e 50%, #2d1b69 100%);
}

.problem-question {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    line-height: 1.4;
}

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

.problem-card {
    padding: 30px;
    background: rgba(220, 38, 127, 0.1);
    border: 1px solid rgba(220, 38, 127, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.problem-card:hover {
    background: rgba(220, 38, 127, 0.15);
    border-color: rgba(220, 38, 127, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 127, 0.2);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc267f, #aa1155);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.problem-content {
    flex: 1;
}

.problem-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.4;
}

.problem-cost {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
}

.problem-confirmation {
    text-align: center;
    margin: 60px 0 40px 0;
}

.confirmation-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #00d4ff;
    margin-bottom: 20px;
}

.worst-part {
    background: rgba(220, 38, 127, 0.15);
    border: 2px solid rgba(220, 38, 127, 0.4);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.worst-content {
    max-width: 700px;
    margin: 0 auto;
}

.worst-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.worst-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.worst-ending {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 400;
}

.change-cta {
    text-align: center;
    margin-top: 60px;
}

.change-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #00d4ff;
    margin-bottom: 30px;
    line-height: 1.2;
}

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

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #1a0b2e 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.benefit-card {
    padding: 40px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

/* How it Works */
.how-it-works {
    padding: 120px 0;
    background: #1a0b2e;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 25px;
}

.step-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.step-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

/* Social Proof */
.social-proof {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #1a0b2e 50%, #2d1b69 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 60px;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn-cta-primary {
    background: white;
    color: #0099cc;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    flex: 1;
}

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

.footer-office {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    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.9);
}

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

.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);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(0, 212, 255, 0.2);
    margin: 40px 0 30px 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;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .container {
        padding: 0 30px;
    }

    header {
        padding: 15px 30px;
    }

    .nav-menu {
        gap: 20px;
    }
}

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

    .nav-menu {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
        align-items: center;
    }

    .footer-copyright {
        padding: 0 20px;
    }

    .benefits,
    .how-it-works,
    .social-proof,
    .cta-section,
    .problemas-comuns {
        padding: 80px 0;
    }

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

    .problem-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .worst-part {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .worst-title {
        font-size: 1.5rem;
    }

    .worst-subtitle {
        font-size: 1.1rem;
    }

    .change-title {
        font-size: 2rem;
    }

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

    .btn-cta-primary {
        width: 100%;
        max-width: 300px;
    }
}