:root {
    --bg: #ffffff;
    --red: #ff3b3b;
    --white: #ffffff;
    --grey: #666666;
    --accent: #e0e0e0;
    --text-dim: #666666;
    --text-main: #000000;
    --card-bg: #f8f8f8;
    --section-alt: #f5f5f5;
    --border-divider: rgba(255, 59, 59, 0.2);
}

html {
    scroll-behavior: smooth;
}

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text-main); margin: 0; padding-bottom: 80px !important;}
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px;}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

.header-main { 
    padding: 12px 0; 
    background: var(--white); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 2px solid rgba(201, 108, 108, 0.8);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
.header-main nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo-img { 
    height: 50px; 
    width: auto; 
    max-width: 100%;
    object-fit: contain; 
    filter: none; 
    display: block;
}
.logo-img:hover {
    opacity: 0.8;
}
.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 30px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px 12px;
}
.menu-toggle:hover {
    color: var(--red);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    touch-action: manipulation;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.nav-links a { 
    color: var(--grey); 
    text-decoration: none; 
    font-size: 0.95rem; 
    transition: 0.3s; 
    font-weight: 400;
    position: relative;
}
.nav-links a:hover { 
    color: var(--text-main); 
}
.nav-links a:not(.cta-header)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.cta-header { 
    background: var(--red); 
    color: #fff !important; 
    padding: 10px 20px; 
    border-radius: 8px; 
    font-weight: 700; 
    transition: all 0.3s;
    font-size: 0.9rem;
}
.cta-header:hover {
    background: rgba(255, 59, 59, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.3);
}
.cta-header::after {
    display: none;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        min-width: 44px;
        min-height: 44px;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-links { 
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        box-shadow: -5px 0 40px rgba(0, 0, 0, 0.2);
        padding: 100px 30px 40px;
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a:not(.cta-header) {
        width: 100%;
        max-width: 100%;
        padding: 20px 20px;
        margin: 0;
        border-bottom: none;
        border-left: 3px solid transparent;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-main);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        min-height: 56px;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
    .nav-links a:not(.cta-header):hover,
    .nav-links a:not(.cta-header):active {
        background: rgba(255, 59, 59, 0.15);
        padding-left: 24px;
        border-left-color: var(--red);
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(255, 59, 59, 0.2);
    }
    .nav-links a::after {
        display: none !important;
    }
    .nav-links .cta-header {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        margin-top: 8px !important;
        padding: 18px 24px !important;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
        min-height: 56px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: var(--red) !important;
        color: #fff !important;
        border: none !important;
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-sizing: border-box;
    }
    .nav-links .btn-matricula {
        background: var(--red) !important;
        color: #fff !important;
    }
    .logo-img { height: 30px; }
}

/* Tablet */
@media (max-width: 768px) {
    .nav-links {
        width: 300px;
        max-width: 80vw;
        padding: 90px 25px 35px;
        gap: 10px;
    }
    .nav-links a:not(.cta-header) {
        padding: 18px 18px;
        font-size: 1rem;
        min-height: 52px;
    }
    .nav-links .cta-header {
        padding: 16px 20px !important;
        font-size: 0.95rem;
        min-height: 52px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        width: 280px;
        max-width: 75vw;
        padding: 85px 20px 30px;
        gap: 8px;
    }
    .nav-links a:not(.cta-header) {
        padding: 16px 16px;
        font-size: 0.95rem;
        min-height: 48px;
        border-radius: 12px;
    }
    .nav-links .cta-header {
        padding: 14px 18px !important;
        font-size: 0.9rem;
        min-height: 48px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 260px;
        max-width: 70vw;
        padding: 80px 15px 25px;
        gap: 6px;
    }
    .nav-links a:not(.cta-header) {
        padding: 14px 14px;
        font-size: 0.9rem;
        min-height: 44px;
        border-radius: 10px;
    }
    .nav-links .cta-header {
        padding: 12px 16px !important;
        font-size: 0.85rem;
        min-height: 44px;
        border-radius: 10px;
    }
}


.hero-course { 
    position: relative; 
    padding: 40px 0 80px; 
    background: var(--bg);
    border-bottom: 2px solid var(--accent);
    overflow: hidden;
}
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.animated-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 59, 59, 0.1);
    animation: float 20s infinite ease-in-out;
}
.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.15) 0%, transparent 70%);
}
.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 25s;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.12) 0%, transparent 70%);
}
.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
}
.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 22s;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.08) 0%, transparent 70%);
}
.shape-5 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    animation-delay: 1s;
    animation-duration: 30s;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
}
.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 20s;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.12) 0%, transparent 70%);
}
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
        opacity: 0.9;
    }
}
.hero-block {
    position: relative;
    z-index: 2;
    background: #000000;
    border-radius: 20px;
    padding: 40px 80px;
    box-shadow: 
        0 0 20px rgba(255, 59, 59, 0.8),
        0 15px 20px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid rgba(255, 59, 59, 0.6);
    overflow: hidden;
    animation: neonGlow 3s ease-in-out infinite alternate;
    width: 100%;
    box-sizing: border-box;
}
@keyframes neonGlow {
    0% {
        box-shadow: 
            0 0 60px rgba(255, 59, 59, 0.3),
            0 0 80px rgba(255, 59, 59, 0.2),
            0 15px 50px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 59, 59, 0.6);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(255, 59, 59, 0.3),
            0 0 90px rgba(255, 59, 59, 0.5),
            0 0 120px rgba(255, 59, 59, 0.3),
            0 15px 50px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 59, 59, 0.9);
    }
}
.hero-icons {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-icon {
    position: absolute;
    color: rgba(255, 59, 59, 0.5);
    animation: iconFloat 15s infinite ease-in-out;
    transition: all 0.3s ease;
    will-change: transform, opacity;
}
.hero-icon:hover {
    color: rgba(255, 59, 59, 0.7);
}
.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 4rem;
    opacity: 0.5;
}
.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    font-size: 5.5rem;
    opacity: 0.6;
}
.icon-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 4s;
    font-size: 3.5rem;
    opacity: 0.45;
}
.icon-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 1s;
    font-size: 4.5rem;
    opacity: 0.55;
}
.icon-5 {
    top: 50%;
    left: 5%;
    animation-delay: 3s;
    font-size: 3rem;
    opacity: 0.4;
}
.icon-6 {
    top: 45%;
    right: 8%;
    animation-delay: 5s;
    font-size: 4.2rem;
    opacity: 0.5;
}
@keyframes iconFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 20px) rotate(3deg);
    }
}
.hero-content { 
    position: relative;
    z-index: 3;
    max-width: 900px; 
    text-align: center;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}
.hero-course h1 { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 0.85; 
    margin: 20px 0 30px; 
    letter-spacing: -2px;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero-course .eyebrow {
    color: var(--red);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.highlight {
    background: linear-gradient(to right, #ff3b3b, #8b0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--red);
    display: inline-block;
}

@media (max-width: 968px) {
    .hero-block {
        padding: 40px 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .hero-course h1 {
        font-size: 2.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    .hero-description {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .hero-icons {
        top: -10px;
        left: -10px;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
    }
    .hero-icon {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .hero-course { 
        padding: 30px 0 50px; 
        overflow: hidden;
    }
    .hero-block {
        padding: 40px 20px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    .hero-course h1 { 
        font-size: 2.2rem; 
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        line-height: 1.1;
    }
    .hero-description { 
        font-size: 1rem; 
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    .hero-btns { 
        flex-direction: column; 
        gap: 15px; 
        align-items: center; 
        width: 100%;
        max-width: 100%;
    }
    .btn-primary { 
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .animated-shape {
        opacity: 0.4;
    }
    .hero-icons {
        top: -5px;
        left: -5px;
        width: calc(100% + 10px);
        height: calc(100% + 10px);
    }
    .hero-icon {
        font-size: 2rem !important;
    }
    .icon-1, .icon-2, .icon-3, .icon-4, .icon-5, .icon-6 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-block {
        padding: 30px 15px;
    }
    .hero-course h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .hero-description {
        font-size: 0.95rem;
    }
    .hero-icons {
        display: none;
    }
    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5, .shape-6 {
        width: 80px;
        height: 80px;
    }
    .hero-icon {
        opacity: 0.3;
    }
    .icon-1 {
        font-size: 2.5rem !important;
    }
    .icon-2 {
        font-size: 3.5rem !important;
    }
    .icon-3 {
        font-size: 2rem !important;
    }
    .icon-4 {
        font-size: 2.8rem !important;
    }
    .icon-5 {
        font-size: 1.8rem !important;
    }
    .icon-6 {
        font-size: 2.3rem !important;
    }
}

.hero-btns { 
    display: flex; 
    gap: 15px; 
    margin-top: 40px; 
    align-items: center;
    justify-content: center;
}

.info-bar { 
    background: var(--section-alt); 
    padding: 80px 0; 
    border-bottom: 2px solid var(--accent);
    border-top: 2px solid var(--accent);
}
.info-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}
.info-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-main);
}
.info-subtitle {
    font-size: 1.1rem;
    color: var(--grey);
    font-weight: 400;
}
.info-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}
.info-card {
    background: var(--white);
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.info-card:hover {
    background: var(--white);
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.15);
}
.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 59, 59, 0.1);
    border-radius: 12px;
    color: var(--red);
    font-size: 1.5rem;
}
.info-label { 
    color: var(--red); 
    font-weight: 700; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    display: block; 
    margin-bottom: 15px; 
    text-transform: uppercase;
}
.info-card p { 
    font-size: 1rem; 
    color: var(--grey); 
    margin: 0; 
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-bar { padding: 50px 0; }
    .info-intro h2 { font-size: 1.8rem; }
    .info-intro { margin-bottom: 40px; }
    .info-grid { grid-template-columns: 1fr; gap: 20px; }
    .info-card { padding: 30px 20px; }
}


.sticky-nav { background: #000; padding: 15px 0; border-bottom: 1px solid var(--accent); position: sticky; top: 86px; z-index: 900; }
.sticky-nav a { color: var(--grey); text-decoration: none; font-size: 0.85rem; font-weight: 600; margin-right: 30px; transition: 0.3s; }
.sticky-nav a:hover { color: var(--red); }


.section { padding: 100px 0; }
.sobre-section {
    background: var(--section-alt);
    border-bottom: 2px solid var(--accent);
    border-top: 2px solid var(--accent);
}
.content-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    margin-top: 50px;
}
.text-block h2 { 
    font-size: 2.5rem; 
    letter-spacing: -1px; 
    margin-bottom: 30px; 
    line-height: 1.2;
    color: var(--text-main);
}
.text-block .lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 400;
    text-align: justify;
}
.text-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 20px;
}
.price-box-inline {
    margin-top: 30px;
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.price-tag { 
    font-size: 1.3rem; 
    color: var(--grey); 
}
.price-tag strong { 
    color: var(--text-main); 
    font-size: 1.8rem; 
}

.ia-icons-card {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 59, 59, 0.2);
}
.ia-icons-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    padding: 40px;
    box-sizing: border-box;
}
.ia-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 59, 59, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(255, 59, 59, 0.3);
    color: rgba(255, 59, 59, 0.8);
    animation: iconPulse 3s infinite ease-in-out;
    transition: all 0.3s ease;
    position: relative;
}
.ia-icon-wrapper:hover {
    background: rgba(255, 59, 59, 0.2);
    border-color: rgba(255, 59, 59, 0.6);
    color: rgba(255, 59, 59, 1);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.3);
}
.icon-ai-1 {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    opacity: 0.6;
    animation-delay: 0s;
    animation: iconFloatCard 4s infinite ease-in-out;
}
.icon-ai-2 {
    width: 100px;
    height: 100px;
    font-size: 3.5rem;
    opacity: 0.9;
    animation-delay: 0.5s;
    animation: iconFloatCard 4.5s infinite ease-in-out;
}
.icon-ai-3 {
    width: 85px;
    height: 85px;
    font-size: 2.8rem;
    opacity: 0.7;
    animation-delay: 1s;
    animation: iconFloatCard 3.5s infinite ease-in-out;
}
.icon-ai-4 {
    width: 95px;
    height: 95px;
    font-size: 3.2rem;
    opacity: 0.85;
    animation-delay: 1.5s;
    animation: iconFloatCard 4.2s infinite ease-in-out;
}
.icon-ai-5 {
    width: 65px;
    height: 65px;
    font-size: 1.8rem;
    opacity: 0.5;
    animation-delay: 0.3s;
    animation: iconFloatCard 3.8s infinite ease-in-out;
}
.icon-ai-6 {
    width: 90px;
    height: 90px;
    font-size: 3rem;
    opacity: 0.75;
    animation-delay: 0.8s;
    animation: iconFloatCard 4.3s infinite ease-in-out;
}
.icon-ai-7 {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    opacity: 0.65;
    animation-delay: 1.2s;
    animation: iconFloatCard 3.7s infinite ease-in-out;
}
.icon-ai-8 {
    width: 75px;
    height: 75px;
    font-size: 2.3rem;
    opacity: 0.55;
    animation-delay: 1.7s;
    animation: iconFloatCard 4.1s infinite ease-in-out;
}
.icon-ai-9 {
    width: 88px;
    height: 88px;
    font-size: 2.9rem;
    opacity: 0.8;
    animation-delay: 2s;
    animation: iconFloatCard 4.4s infinite ease-in-out;
}
@keyframes iconFloatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}
@keyframes iconPulse {
    0%, 100% {
        opacity: 0.7;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px 5px rgba(255, 59, 59, 0.2);
    }
}

/* Processo */
.processo-section {
    background: var(--bg);
    border-bottom: 2px solid var(--accent);
    border-top: 2px solid var(--accent);
}
.processo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.processo-card {
    background: var(--white);
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.processo-card:hover {
    background: var(--white);
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.15);
}
.processo-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
}
.processo-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}
.processo-card p {
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.6;
    margin: 0;
}
.processo-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .section { padding: 60px 0; text-align: center; }
    .content-split { grid-template-columns: 1fr; gap: 40px; }
    .text-block { text-align: center; }
    .text-block h2 { font-size: 1.8rem; }
    .text-block .lead-text { font-size: 1.1rem; text-align: center; }
    .price-box-inline { flex-direction: column; align-items: center; gap: 15px; }
    .price-box-inline .btn-primary { display: block; margin: 0 auto; }
    .ia-icons-card {
        min-height: 300px;
    }
    .ia-icons-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 25px 15px;
    }
    .icon-ai-1 {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    .icon-ai-2 {
        width: 70px !important;
        height: 70px !important;
        font-size: 2.5rem !important;
    }
    .icon-ai-3 {
        width: 60px !important;
        height: 60px !important;
        font-size: 2rem !important;
    }
    .icon-ai-4 {
        width: 65px !important;
        height: 65px !important;
        font-size: 2.2rem !important;
    }
    .icon-ai-5 {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
    }
    .icon-ai-6 {
        width: 63px !important;
        height: 63px !important;
        font-size: 2.1rem !important;
    }
    .icon-ai-7 {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.8rem !important;
    }
    .icon-ai-8 {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.6rem !important;
    }
    .icon-ai-9 {
        width: 58px !important;
        height: 58px !important;
        font-size: 2rem !important;
    }
    .processo-grid { grid-template-columns: 1fr; gap: 20px; }
}


.btn-primary { 
    background: var(--red); 
    color: var(--white); 
    padding: 18px 40px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-block; 
    transition: all 0.3s ease;
    font-size: 1rem;
    max-width: fit-content;
}
.btn-primary:hover {
    background: rgba(255, 59, 59, 0.9);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);
}


.btn-outline { 
    border: 2px solid var(--white); 
    color: var(--white); 
    padding: 18px 40px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: transparent;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--bg);
    transform: translateY(-2px);
}



@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
    .content-split { grid-template-columns: 1fr; }
    .hero-course h1 { font-size: 3.5rem; }
}


.bottom-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--accent);
    padding: 15px 0;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

.footer-spacer {
    height: 85px; 
    width: 100%;
    display: block;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sticky-course-name {
    font-size: 0.85rem;
    color: var(--grey);
    font-weight: 400;
}

.sticky-values {
    display: flex;
    gap: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.value-item img {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.value-item strong {
    color: var(--text-main);
    margin-left: 5px;
}


.btn-sticky-action {
    background-color: var(--red);
    color: white;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-sticky-action:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* Responsividade - Celular */
@media (max-width: 768px) {
    .sticky-values {
        display: none; 
    }
    .sticky-info {
        flex: 1;
    }
    .sticky-course-name {
        font-size: 1rem;
        color: var(--text-main);
        font-weight: 600;
    }
    .btn-sticky-action {
        padding: 10px 20px;
    }
}

footer { padding: 50px 0; text-align: center; color: var(--text-dim); font-size: 0.8rem; border-top: 1px solid var(--accent); }
.footer-logo { margin-bottom: 20px; }
.logo-img-footer { 
    height: 60px; 
    width: auto; 
    object-fit: contain; 
    filter: none;
    opacity: 0.8; 
    transition: 0.3s; 
}
.logo-img-footer:hover { opacity: 1; }


.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: none !important; 
    opacity: 0.95;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer-logo:hover { opacity: 1; transform: translateY(-2px); }

@media (max-width: 768px) {
    .globe-container { width: 100%; right: 0; opacity: 0.5; }
    .hero h1 { font-size: 2.8rem; }
}

.main-footer {
    background-color: #f5f5f5;
    padding: 80px 0 30px;
    border-top: 1px solid var(--accent);
    color: var(--text-main);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; 
}

.footer-column {
    flex: 1;
    min-width: 200px; 
}

.footer-nav-column {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    text-align: center;   
    width: 100%;  
}

.footer-nav-column ul li {
    text-align: center;
    margin-bottom: 12px;
}

.footer-nav-column ul li a:hover {
    padding-left: 0; 
    color: var(--red);
    font-weight: 600;
}

.footer-column h3 {
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); 
    display: block;
}

.footer-column p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 10px;
}


.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: var(--text-main);
    padding-left: 5px;
}

@media (max-width: 1024px) {
    .footer-grid {
        gap: 30px;
    }
    .footer-column {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 25px;
    }
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-column {
        min-width: 100%;
    }
    .map-container {
        max-width: 100%;
        margin: 0 auto;
    }
    .map-container iframe {
        height: 200px;
    }
}


.map-container {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid var(--accent);
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
}


.footer-bottom {
    text-align: center !important;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
    color: var(--grey);
    font-size: 0.8rem;
}

/* Inscrição */
.inscricao-section {
    background: var(--section-alt);
    padding: 100px 0;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
}
.inscricao-block {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.inscricao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.inscricao-text {
    color: #000;
}
.inscricao-text .eyebrow {
    color: var(--red);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}
.inscricao-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -1px;
}
.inscricao-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}
.inscricao-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 1rem;
}
.benefit-item i {
    color: var(--red);
    font-size: 1.2rem;
}
.inscricao-form-container {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.inscricao-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #000;
    background: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}
.form-group select {
    cursor: pointer;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.btn-submit-form {
    background: var(--red);
    color: var(--white);
    padding: 18px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.btn-submit-form:hover {
    background: rgba(255, 59, 59, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);
}
.btn-submit-form i {
    transition: transform 0.3s ease;
}
.btn-submit-form:hover i {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .inscricao-content {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .inscricao-block {
        padding: 40px 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .inscricao-form-container {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .inscricao-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .inscricao-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .inscricao-section {
        padding: 60px 0;
    }
    .inscricao-block {
        padding: 30px 15px;
        border-radius: 16px;
    }
    .inscricao-text h2 {
        font-size: 1.8rem;
    }
    .inscricao-text p {
        font-size: 1rem;
    }
    .inscricao-form-container {
        padding: 20px 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .inscricao-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .form-group {
        gap: 6px;
    }
    .inscricao-form {
        gap: 15px;
    }
}

.section-title { 
    margin-bottom: 50px; 
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 15px;
    letter-spacing: -1px;
    color: var(--text-main);
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey);
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.6;
}
.eyebrow { 
    color: var(--red); 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    font-weight: 700; 
    letter-spacing: 2px; 
    display: block;
}
.programa-section {
    background: var(--bg);
    border-bottom: 2px solid var(--accent);
    border-top: 2px solid var(--accent);
}

.ementa-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-top: 30px; 
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.eixo-item {
    background: var(--white);
    border: 1px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.eixo-item button,
.eixo-item .faq-question {
    color: #000000 !important;
}
.eixo-item:hover {
    background: var(--white);
    border-color: var(--red);
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.15);
}

@media (max-width: 768px) {
    .section-title { margin-bottom: 25px; }
    .ementa-grid { gap: 12px; margin-top: 20px; }
    .faq-question { font-size: 1rem; padding: 18px 15px; }
    .faq-answer ul { padding: 0 15px 15px 35px; }
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    color: #000000 !important;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.faq-question,
.eixo-item .faq-question,
.ementa-grid .faq-question,
button.faq-question,
.eixo-item button.faq-question,
.programa-section .faq-question,
.programa-section button.faq-question {
    color: #000000 !important;
}
.faq-question span:not(.icon),
.faq-question *:not(.icon),
button.faq-question span:not(.icon) {
    color: #000000 !important;
}
.eixo-item button {
    color: #000000 !important;
}

.faq-question:hover { 
    background: var(--card-bg); 
    color: var(--red) !important;
}
.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--red);
    transition: transform 0.3s;
}
.faq-question.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
    background: var(--card-bg);
}

.faq-answer ul { 
    padding: 0 30px 25px 50px; 
    list-style: none; 
    color: var(--grey); 
}
.faq-answer li { 
    margin-bottom: 12px; 
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}
.faq-answer li::before {
    content: '•';
    color: var(--red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Modal */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); justify-content: center; align-items: center; z-index: 2000; backdrop-filter: blur(10px); }
.modal-overlay.active { display: flex; }
.modal-content { background: var(--white); padding: 50px; border-radius: 30px; width: 90%; max-width: 450px; position: relative; border: 1px solid var(--accent); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }
.close-modal { position: absolute; top: 20px; right: 25px; font-size: 2rem; cursor: pointer; color: var(--text-main); }
.modal-header h2 { color: var(--text-main); }
.modal-header p { color: var(--grey); }
#form-contato input, #form-contato select { width: 100%; padding: 15px; margin-bottom: 15px; background: var(--white); border: 2px solid var(--accent); color: var(--text-main); border-radius: 12px; }
#form-contato input:focus, #form-contato select:focus { outline: none; border-color: var(--red); }
.btn-submit { width: 100%; padding: 18px; background: var(--red); border: none; color: #fff; border-radius: 50px; font-weight: 700; cursor: pointer; }

@media (max-width: 768px) {
    .modal-content { padding: 30px 20px; width: 95%; }
    .close-modal { font-size: 1.5rem; }
    #form-contato input, #form-contato select { padding: 12px; font-size: 1rem; }
}

/* Cursos */
.programs { padding: 50px 0; }
.grid-programs { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; align-items: stretch; grid-auto-rows: 1fr; }
.program-card { background: var(--card-bg); padding: 50px 40px; border-radius: 24px; border: 1px solid var(--accent); transition: 0.4s; display: flex; flex-direction: column; }
.program-card:hover { border-color: var(--red); transform: translateY(-10px); }
.tag { color: var(--red); font-size: 0.7rem; font-weight: 700; background: rgba(255, 59, 59, 0.1); padding: 5px 15px; border-radius: 50px; }
.program-card h3 { font-size: 2rem; margin: 20px 0; }

.features { list-style: none; margin: 25px 0; }
.features li { margin-bottom: 10px; color: var(--text-dim); }
.features li::before { content: "→"; color: var(--red); margin-right: 10px; }
.btn-card { width: 100%; padding: 15px; background: var(--red); border: 1px solid var(--red); color: #fff; border-radius: 50px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.btn-card:hover { background: rgba(255, 59, 59, 0.9); box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);}

.expand-info { display: flex; flex-direction: column; align-items: center; margin-top: 18px; gap: 12px; }
.arrow-down {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.06);
    font-weight: 700;
    transition: transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
    user-select:none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.arrow-down:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.expand-info .additional-info {
    width: 100%;
    max-width: 100%;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
    color: var(--text-dim);
    padding: 8px 12px 8px 18px;
    box-sizing: border-box;
    border-left: 3px solid rgba(255,255,255,0.03);
}

.expand-info .additional-info p { margin: 6px 0; }

.expand-info.open .additional-info {
    max-height: 240px;
    opacity: 1;
}

.expand-info.open .arrow-down { transform: rotate(180deg); background: rgba(255,255,255,0.06); }

@media (max-width: 768px) {
    .programs { padding: 60px 0; }
    .grid-programs { grid-template-columns: 1fr; gap: 20px; }
    .program-card { padding: 30px 25px; }
    .program-card h3 { font-size: 1.3rem; }
}

.whatsapp-fixed {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s;
}
.whatsapp-fixed:hover {
    transform: scale(1.1);
}

/* Responsividade - Programa */
@media (max-width: 768px) {
    .programa-section .section-title h2 { 
        text-align: center; 
        color: var(--black);
    }
    .programa-section .section-subtitle {
        text-align: center;
        color: var(--black);
    }
    .ementa-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .eixo-item {
        width: 100%;
        max-width: 100%;
    }
    .programa-section .btn-primary {
        display: block;
        width: auto;
        max-width: fit-content;
        margin: 20px auto 0;
    }
}

.program-card .btn-matricula { margin-top: auto; }

.scroll-container {
    position: absolute;
    bottom: 30px;
    right: 40px; 
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #000000; 
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #ff3b3b; 
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

.form-banner-img {
    width: 100%;           
    max-width: 500px;      
    max-height: 200px;
    border-radius: 12px;   
    margin: 20px 0;       
    display: block;
    object-fit: cover;
}