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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Logo Header */
.logo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(149, 27, 34, 0.4), rgba(26, 26, 46, 0.5)), url('assets/bghero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(149, 27, 34, 0.3) 0%, rgba(26, 26, 46, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.hero h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
    max-width: 600px;
    text-align: center;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #951b22, #c41e3a);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(149, 27, 34, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(149, 27, 34, 0.4);
}

/* Rights Section */
.rights-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-title h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #666;
    margin: 0 auto 3rem auto;
    max-width: 800px;
    text-align: center;
    line-height: 1.6;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.right-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #951b22, #c41e3a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.right-card:hover::before {
    transform: scaleX(1);
}

.right-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(149, 27, 34, 0.15);
}

.right-card h3 {
    color: #1a1a2e;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.right-card::after {
    content: '⚖️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.right-card:hover::after {
    opacity: 0.3;
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-image:hover img {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 2.5rem;
    color: #951b22;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.about-text strong {
    color: #951b22;
    font-weight: 600;
}

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

.features-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 36px;
    color: #555;
    line-height: 1.8;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #951b22;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-highlight {
    background: linear-gradient(135deg, #951b22, #c41e3a);
    border-radius: 20px;
    padding: 50px;
    margin: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(149, 27, 34, 0.3);
}

.cta-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta-highlight h2 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin: 0 auto 1.5rem auto;
    font-weight: 600;
    text-align: center;
    max-width: 700px;
    line-height: 1.4;
}

.cta-highlight .cta-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.cta-highlight .cta-button:hover {
    background: white;
    color: #951b22;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #951b22 0%, #6c1318 100%);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: backgroundMove 8s ease-in-out infinite;
}

.cta-glass-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.cta-glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 50px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.final-cta-content {
    position: relative;
    z-index: 3;
    color: white;
}

.final-cta h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin: 0 auto 1rem auto;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 600px;
    line-height: 1.2;
}

.final-cta h3 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin: 0 auto 2rem auto;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    text-align: center;
    max-width: 500px;
    line-height: 1.3;
}

.final-cta p {
    font-size: 1.2rem;
    margin: 0 auto 3rem auto;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.7;
    text-align: center;
}

.final-cta .cta-button {
    font-size: 1.4rem;
    padding: 22px 60px;
    margin: 0 auto 3rem auto;
    display: inline-block;
    background: white;
    color: #951b22;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

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

@keyframes backgroundMove {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1); 
    }
}

/* WhatsApp Button Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
    }
}

/* Mobile Responsive - Otimizado */
@media (max-width: 768px) {
    /* Fontes otimizadas para mobile */
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero h2 {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .section-title h1 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        margin-bottom: 0.8rem;
    }

    .section-title h2 {
        font-size: clamp(0.85rem, 3vw, 1rem) !important;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .about-text h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .about-text p {
        font-size: 0.95rem !important;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .final-cta h2 {
        font-size: clamp(1.6rem, 5vw, 2rem) !important;
        line-height: 1.2;
    }

    .final-cta h3 {
        font-size: clamp(1rem, 3vw, 1.2rem) !important;
        margin-bottom: 1.5rem;
    }

    .final-cta p {
        font-size: 0.95rem !important;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    /* Layout geral mobile */
    .hero {
        text-align: center;
        padding: 1.5rem 0;
        background-attachment: scroll;
        padding-top: 80px;
        min-height: 85vh;
    }

    /* Seção sobre otimizada */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-image {
        order: 1;
        margin-bottom: 1rem;
    }

    .about-text {
        order: 2;
    }

    .about-image img {
        max-width: 280px;
        margin: 0 auto;
        border-radius: 20px;
    }

    /* Blocos de direitos otimizados */
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 2rem;
    }

    .right-card {
        padding: 20px 15px;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 10px;
    }

    .right-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .right-card p {
        font-size: 0.9rem !important;
        line-height: 1.4;
        color: #666;
    }

    /* Remover hovers problemáticos no mobile */
    .right-card:hover {
        transform: none !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    }

    .about-image:hover img {
        transform: none !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    }

    .cta-button:hover {
        transform: none !important;
        box-shadow: 0 8px 25px rgba(149, 27, 34, 0.3) !important;
    }

    .main-logo:hover {
        transform: none !important;
    }

    .contact-item:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .final-cta .cta-button:hover {
        transform: none !important;
        box-shadow: 0 8px 25px rgba(149, 27, 34, 0.3) !important;
    }

    /* Botões otimizados */
    .cta-button {
        padding: 14px 25px;
        font-size: 0.95rem;
        border-radius: 25px;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .container {
        padding: 0 15px;
    }

    /* CTA highlight otimizado */
    .cta-highlight {
        padding: 25px 15px;
        margin: 2rem 0;
        border-radius: 15px;
    }

    .cta-highlight h2 {
        font-size: clamp(1.1rem, 4vw, 1.4rem) !important;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    /* Seção final otimizada */
    .final-cta {
        padding: 80px 0;
    }

    .cta-glass-box {
        padding: 30px 20px;
        border-radius: 20px;
        margin: 0 10px;
    }

    .final-cta .cta-button {
        font-size: 1rem;
        padding: 16px 30px;
        margin-bottom: 2rem;
    }

    /* Contact info otimizado */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 2rem;
    }

    .contact-item {
        padding: 15px;
        border-radius: 12px;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .contact-text {
        font-size: 0.95rem;
        text-decoration: none !important;
        color: white !important;
    }

    .main-logo {
        height: 50px;
    }

    /* Features list otimizada */
    .features-list li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 30px;
        line-height: 1.5;
    }

    .features-list li::before {
        font-size: 1rem;
    }

    /* Seções com padding otimizado */
    .rights-section,
    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    /* Mobile pequeno - ajustes adicionais */
    .hero {
        min-height: 75vh;
        padding-top: 70px;
    }
    
    .hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    }

    .hero h2 {
        font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
    }

    .main-logo {
        height: 40px;
    }

    .logo-header {
        padding: 8px 0;
    }

    .about-image img {
        max-width: 250px;
    }

    .right-card {
        padding: 18px 12px;
    }

    .right-card h3 {
        font-size: 1rem !important;
    }

    .right-card p {
        font-size: 0.85rem !important;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .final-cta {
        padding: 60px 0;
    }

    .cta-glass-box {
        padding: 25px 15px;
        margin: 0 5px;
    }

    .contact-item {
        padding: 12px;
        gap: 10px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .contact-text {
        font-size: 0.9rem;
    }
}