/* Modern Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors - Premium Light Judo Theme */
    --primary-blue: #0044CC;
    /* Deep Royal Blue */
    --accent-blue: #3B82F6;
    /* Vibrant Blue */

    --bg-white: #FFFFFF;
    --bg-off-white: #F8FAFC;
    /* Slate 50 */
    --bg-light-gray: #F1F5F9;
    /* Slate 100 */

    --gold: #D97706;
    /* Darker Gold for visibility on white */
    --gold-glow: #F59E0B;

    --text-dark: #0F172A;
    /* Slate 900 */
    --text-gray: #475569;
    /* Slate 600 */
    --text-light-gray: #94A3B8;
    /* Slate 400 */

    --success-green: #059669;
    /* Darker green for contrast on white */

    /* Gradients - Subtle for Light Theme */
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
    --gradient-blue: linear-gradient(135deg, #0044CC 0%, #3B82F6 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FFD700 100%);

    /* Glassmorphism - Adjusted for Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-blur: blur(12px);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.2);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

/* ... (keep existing styles) ... */



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--success-green);
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
    background: #047857;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 600px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light-gray);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
}

.btn-nav:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: var(--bg-white);
    min-height: auto;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Modern Abstract Background */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(0, 68, 204, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
}

.hero-content {
    flex: 1.2;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-dark);
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

.text-highlight {
    color: var(--primary-blue);
    display: inline-block;
    position: relative;
}

/* Marker effect for highlight */
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(59, 130, 246, 0.1);
    z-index: -1;
    transform: skewX(-10deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-benefits {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.check-icon {
    color: var(--success-green);
    font-weight: 800;
    background: rgba(5, 150, 105, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.cta-wrapper-center {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0.8;
}

.hero-image-container {
    flex: 0.8;
    position: relative;
    animation: fadeInRight 1s ease-out 0.2s forwards;
    opacity: 0;
    width: 100%;
    max-width: 100%;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    padding: 0;
    /* Removed padding for cleaner look */
    background: transparent;
    border: none;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1),
        -20px -20px 60px rgba(255, 255, 255, 0.8);
    /* Neumorphic-ish depth */
    width: 100%;
    max-width: 100%;
}

/* Decorative backdrop for image */
.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    transition: transform 0.3s ease;
}

.image-frame:hover::before {
    transform: translate(10px, 10px);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    transform: rotate(-2deg);
    /* Slight tilt for dynamic feel */
    transition: transform 0.3s ease;
    object-fit: contain;
}

.image-frame:hover .hero-img {
    transform: rotate(0deg);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: #FFFFFF;
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: calc(100% - 40px);
}

@keyframes float {

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

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 700;
    color: var(--text-dark);
}

.badge-subtitle {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    width: 100%;
    clear: both;
    z-index: 1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
}

.value-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.achievements-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.achievement-item {
    background: var(--bg-off-white);
    border: 1px solid var(--glass-border);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
    box-shadow: var(--shadow-sm);
}

.achievement-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.medal {
    font-size: 1.5rem;
}

.achievement-desc {
    font-weight: 600;
    color: var(--text-dark);
}

.about-details {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 68, 204, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 68, 204, 0.1);
}

/* Timeline Styles */
.timeline-container {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
    position: relative;
    width: 100%;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-image {
    flex: 1;
    max-width: 400px;
    position: relative;
    width: 100%;
}

.timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: block;
    object-fit: contain;
    position: relative;
}

.timeline-content {
    flex: 1;
    text-align: left;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.timeline-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.medal-icon {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column-reverse;
        text-align: center;
    }

    .timeline-content {
        text-align: center;
    }

    .timeline-list li {
        justify-content: center;
    }

    .timeline-image {
        max-width: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-off-white);
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: visible;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    overflow: visible;
    width: 100%;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: contain;
    max-width: 100%;
    position: relative;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: var(--bg-off-white);
    position: relative;
    width: 100%;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.benefits-box {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefits-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
}

.box-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-off-white);
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.benefit-card:hover {
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-blue);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Analysis Section */
/* Dia do Judoca Section */
.day-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    width: 100%;
    z-index: 1;
}

.day-content {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.day-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Value Section */
.value-section {
    padding: 100px 0;
    background: var(--bg-off-white);
    position: relative;
    width: 100%;
    z-index: 1;
}

.center {
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.value-item {
    background: #FFFFFF;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.value-item:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.value-item:hover h3 {
    color: #FFFFFF;
}

.community-footer-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: #FFFFFF;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 68, 204, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-dark);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.final-cta .btn-primary {
    position: relative;
    margin-bottom: 20px;
}

.final-cta .cta-subtext {
    position: relative;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--bg-off-white);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    position: static;
    width: 100%;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    color: #FFFFFF;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        overflow-x: hidden;
        width: 100%;
    }

    .hero {
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        position: relative;
        width: 100%;
    }

    .hero-content {
        order: 1;
        position: relative;
        width: 100%;
    }

    .hero-image-container {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        position: relative;
    }

    .hero-img {
        transform: none;
        /* Remove rotation on mobile to prevent clipping */
    }

    .image-frame:hover .hero-img {
        transform: none;
    }

    .floating-badge {
        position: relative;
        right: auto;
        bottom: auto;
        padding: 10px 20px;
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .image-frame {
        width: 100%;
        max-width: 100%;
    }
    
    .about-section,
    .testimonials-section,
    .community-section,
    .day-section,
    .value-section,
    .final-cta {
        position: relative;
        width: 100%;
        z-index: 1;
    }
    
    .testimonials-section {
        overflow: visible;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow: visible;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 0;
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonial-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
        max-width: 100%;
        position: relative;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .badge-title {
        font-size: 0.9rem;
    }

    .badge-subtitle {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-title .text-highlight {
        display: inline;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.6;
    }

    .hero-benefits li {
        justify-content: center;
        text-align: left;
    }

    .cta-wrapper {
        align-items: center;
    }

    .btn-primary {
        width: 100%;
        white-space: normal;
        height: auto;
        padding: 15px 20px;
        line-height: 1.3;
    }

    /* Timeline Fixes */
    .timeline-item,
    .timeline-item.reverse {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px;
    }

    .timeline-content {
        text-align: center;
    }

    .timeline-list li {
        justify-content: center;
        flex-wrap: wrap;
    }

    .timeline-image {
        max-width: 100%;
        margin-top: 20px;
        position: relative;
        width: 100%;
    }

    .timeline-image img {
        width: 100%;
        height: auto;
        position: relative;
        object-fit: contain;
    }
    
    .timeline-item {
        position: relative;
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    /* Nav Button Fixes */
    .btn-nav {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        max-width: 120px;
    }

    .nav-container {
        gap: 10px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}