 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        body {
            background: linear-gradient(135deg, #001a33 0%, #0058a0 100%);
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }
        svg, path{
            z-index: 999;
        }
        .py-12{
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }

        .gap-6{
            padding:20px !important;
        }
        .main-container {
                flex-direction: column !important;
            }

        .glow-effect {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,186,195,0.2) 0%, rgba(0,88,160,0) 70%);
            filter: blur(30px);
            z-index: 0;
            animation: pulse 8s infinite alternate;
        }

        .floating-icon {
            position: absolute;
            z-index: 1;
            filter: drop-shadow(0 0 5px rgba(255, 212, 40, 0.5));
            animation: float 6s infinite ease-in-out;
        }

        .btn-primary {
            display: none !important;
            background: linear-gradient(135deg, #ffd428 0%, #b3a180 100%);
            color: #001a33;
            font-weight: 600;
            border-radius: 12px;
            padding: 14px 32px;
            box-shadow: 0 0 15px rgba(255, 212, 40, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(255, 212, 40, 0.7);
        }

        .btn-primary: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: 0.5s;
            z-index: -1;
        }

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

        .feature-card {
            background: rgba(0, 26, 51, 0.7);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(179, 161, 128, 0.2);
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 186, 195, 0.3);
            border: 1px solid rgba(179, 161, 128, 0.5);
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 230%;
            background: radial-gradient(circle, rgba(0,186,195,0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            z-index: 0;
        }

        .feature-icon {
            background: linear-gradient(135deg, rgba(0, 186, 195, 0.2) 0%, rgba(255, 212, 40, 0.2) 100%);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .feature-icon svg {
            filter: drop-shadow(0 0 3px rgba(255, 212, 40, 0.5));
        }
        #align-camisa{
            width: 100%;
            padding: 27px;
            display: flex;
            overflow: visible !important;
            align-self: center !important;
            align-items: center !important; 
            justify-content: center !important;
        }

        .profile-container {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            justify-content: center !important;
            align-items: center !important;
        }

        .profile-image {
            width: 320px;
            height: 320px;
            
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(255, 212, 40, 0.5);
            box-shadow: 0 0 30px rgba(0, 186, 195, 0.5);
            position: relative;
            z-index: 2;
        }

        .profile-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,186,195,0.3) 0%, rgba(0,88,160,0) 70%);
            filter: blur(40px);
            z-index: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .wpp-card {
            background: linear-gradient(135deg, #003012 0%, #05453d 100%);
            border: 1px solid #128C7E;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            color: white;
        }

        .wpp-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 2px 3px 2px rgba(37, 211, 102, 0.6);
            
        }

        .wpp-icon {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #25D366;
            color: #25D366;
            transition: background 0.3s ease;
        }

        .wpp-card:hover .wpp-icon {
            background: #ffffff22;
        }

        .w-full{
            padding: 0px !important;
        }

        .social-btn {
            background: linear-gradient(135deg, rgba(0, 186, 195, 0.2) 0%, rgba(0, 88, 160, 0.2) 100%);
            border-radius: 12px;
            padding: 24px 28px;
            margin-top: 10px;
            margin-bottom: 5px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(179, 161, 128, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 186, 195, 0.3);
            border: 1px solid rgba(179, 161, 128, 0.5);
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(5deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.1);
            }
        }

        /* Floating icons with different animations */
        .icon-1 {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 8s;
        }

        .icon-2 {
            top: 60%;
            left: 15%;
            animation-delay: 1s;
            animation-duration: 9s;
        }

        .icon-3 {
            top: 25%;
            right: 15%;
            animation-delay: 2s;
            animation-duration: 7s;
        }

        .icon-4 {
            top: 70%;
            right: 10%;
            animation-delay: 3s;
            animation-duration: 10s;
        }

        .glow-1 {
            top: 20%;
            left: 30%;
            animation-delay: 0s;
        }

        .glow-2 {
            bottom: 10%;
            right: 20%;
            animation-delay: 4s;
        }


        /*Alinhando containers */
        /* Layout em tela grande (desktop) */
@media (min-width: 1025px) {
    *{
        overflow-x: hidden;
 
    }
    body {
        overflow-x: hidden;
        padding-top: 0px !important;
    }

    .main-container {
        flex-direction: row !important;
        height: 100vh;
    }

    .left-section {
        order: -1 !important;
        width: 50%;
        height: 100vh;
        overflow-x:hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end; /* alinha ao lado direito */
        padding-right: 5%;
    }

    .right-section {
        order: 1;
        width: 50%;
        height: 100vh;
        overflow: auto;
        display: flex;
        justify-content: flex-start; /* alinha ao lado esquerdo */
        align-items: center;
        padding-left: 5%;
    }
}

@media (max-width: 1280px) {
 .text-xl {
    font-size: 15px !important;
 }
}
/* Telas menores: empilha os elementos verticalmente */
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    .main-container {
        flex-direction: column !important;
        height: auto;
    }

    .left-section,
    .right-section {
        width: 100%;
        height: auto;
        padding: 2rem;
        justify-content: center;
        align-items: center;
    }
}


        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .main-container {
                flex-direction: column;
            }
            
            .left-section, .right-section {
                width: 100%;
                padding: 2rem;
            }
            
            .profile-image {
                width: 280px;
                height: 280px;
            }
            
            .profile-glow {
                width: 340px;
                height: 340px;
            }
        }
        h1{
            display: none;
        }
        .btn-primary{
                display: none;
            }

        @media (max-width: 768px) {
            .btn-primary{
                display: none;
            }
            
            .profile-image {
                width: 240px;
                height: 240px;
            }
            
            .profile-glow {
                width: 300px;
                height: 300px;
            }
            
            h1 {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .profile-image {
                width: 200px;
                height: 200px;
            }
            
            .profile-glow {
                width: 260px;
                height: 260px;
            }
            
            h1 {
                display: none;
            }
            
            .btn-primary {
                display: none;
                padding: 12px 24px;
            }
        }
        @media (max-width: 468px) {
            div.feature-card.video-card{
                height: 14vh !important;
                min-height: 14vh;
            }
        }
.video-card {
    background-image: url('img/milhas.png');
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 26, 51, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 161, 128, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;  /* importante para organizar título e descrição */
    justify-content: flex-start;
    cursor: pointer;

    /* Definir altura fixa e esconder overflow no desktop */
    min-height: 60%;  /* aumenta para espaço confortável */
    height: 20vh;
    overflow: hidden;
    padding: 16px 20px; /* espaço interno para texto */
    box-sizing: border-box;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 186, 195, 0.3);
    border: 1px solid rgba(179, 161, 128, 0.5);
}

/* Pseudo elemento decorativo */
.video-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,186,195,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
}

/* Overlay escurecido */
.video-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    z-index: 1;
}

.video-card:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.video-overlay svg {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transition: transform 0.3s ease;
    z-index: 2;
}

.video-card:hover .video-overlay svg {
    transform: scale(1.1);
}

/* Responsividade - mobile: scroll vertical e altura flexível */
@media (max-width: 1024px) {
    .video-card {
        min-height: 24vh;
        height: 26vh;          /* permite crescer conforme conteúdo */
        max-height: 28vh;     /* limite máximo para não crescer demais */
        overflow: hidden;    /* sem scroll horizontal */
        padding-right: 12px;   /* para não cortar scrollbar */
        scrollbar-width: thin; /* Firefox: scrollbar fina */
        -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
    }

    /* Opcional: estilizar scrollbar no Webkit (Chrome, Safari) */
    .video-card::-webkit-scrollbar {
        width: 6px;
    }
    .video-card::-webkit-scrollbar-thumb {
        background-color: rgba(179, 161, 128, 0.4);
        border-radius: 3px;
    }
}
@media (max-width: 530px) {
    div.feature-card.video-card {
        min-height: 110px !important;
        height: 170px !important;          /* permite crescer conforme conteúdo */
        max-height: 28vh;     /* limite máximo para não crescer demais */
        overflow: hidden;    /* sem scroll horizontal */
        padding-right: 12px;   /* para não cortar scrollbar */
        scrollbar-width: thin; /* Firefox: scrollbar fina */
        -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
    }}