/* ============================================
   menosBets - Hoja de Estilos Principal
   ============================================ */

/* --- VARIABLES CSS --- */
:root {
    --navy-deep: #00133b;
    --navy: #002361;
    --sky: #3cb4e5;
    --ice: #c6d8e8;
    --green: #2dbc4e;
    --white: #ffffff;
}

/* --- RESET Y BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* --- NAVEGACION --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0,19,59,0.95) 0%, rgba(0,19,59,0) 100%);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
}

.logo span {
    color: var(--green);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--ice);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--green);
    color: var(--navy-deep);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(45,188,78,0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(45,188,78,0.5);
}

/* --- PAGINAS --- */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 4rem 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(60,180,229,0.15) 0%, transparent 50%),
                linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(60,180,229,0.1);
    border: 1px solid rgba(60,180,229,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--sky);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--sky) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: var(--ice);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* --- ANIMACIONES --- */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

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

/* --- BOTONES --- */
.btn-primary {
    background: var(--green);
    color: var(--navy-deep);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(45,188,78,0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(45,188,78,0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid rgba(198,216,232,0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--sky);
    background: rgba(60,180,229,0.1);
}

/* --- ESTADISTICAS --- */
.stats {
    padding: 6rem 4rem;
    background: var(--navy);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0,35,97,0.5) 0%, rgba(0,19,59,0.5) 100%);
    border: 1px solid rgba(60,180,229,0.1);
    transition: all 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(60,180,229,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sky) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--ice);
    margin-top: 0.8rem;
    line-height: 1.5;
}

.stat-source {
    font-size: 0.75rem;
    color: rgba(198,216,232,0.5);
    margin-top: 0.5rem;
    font-style: italic;
}

/* --- SECCIONES GENERALES --- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    color: var(--sky);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--ice);
    line-height: 1.7;
}

/* --- SECCION PROBLEMA --- */
.problem {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: linear-gradient(135deg, rgba(0,35,97,0.6) 0%, rgba(0,19,59,0.8) 100%);
    border: 1px solid rgba(60,180,229,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--green));
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(60,180,229,0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky) 0%, var(--green) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--navy-deep);
}

.problem-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--ice);
    line-height: 1.7;
}

/* --- SECCION SOLUCION --- */
.solution {
    padding: 8rem 4rem;
    background: var(--navy-deep);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.solution-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.solution-text h2 .highlight {
    color: var(--green);
}

.solution-text > p {
    font-size: 1.15rem;
    color: var(--ice);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: rgba(45,188,78,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    font-size: 0.8rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--ice);
    line-height: 1.6;
}

/* --- TESTIMONIOS --- */
.testimonials {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(0,35,97,0.5) 0%, rgba(0,19,59,0.7) 100%);
    border: 1px solid rgba(60,180,229,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--sky);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ice);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sky), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy-deep);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--sky);
}

.testimonial-disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(198,216,232,0.5);
    font-style: italic;
}

/* --- CTA --- */
.cta {
    padding: 8rem 4rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(60,180,229,0.1) 0%, transparent 70%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: var(--ice);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--ice);
}

.cta-phone a {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

.cta-phone a:hover {
    color: var(--sky);
}

/* --- PAGINAS LEGALES --- */
.legal-page {
    padding: 10rem 4rem 6rem;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-content .last-updated {
    color: var(--sky);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--ice);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--ice);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--green);
    text-decoration: none;
    cursor: pointer;
}

.contact-box {
    background: rgba(60,180,229,0.1);
    border: 1px solid rgba(60,180,229,0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

/* --- PAGINA DE CONTACTO --- */
.contact-page {
    padding: 10rem 4rem 6rem;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--ice);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky) 0%, var(--green) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: var(--navy-deep);
}

.contact-method h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: var(--ice);
}

.contact-method a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(0,35,97,0.5) 0%, rgba(0,19,59,0.7) 100%);
    border: 1px solid rgba(60,180,229,0.15);
    border-radius: 24px;
    padding: 3rem;
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ice);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0,19,59,0.5);
    border: 1px solid rgba(60,180,229,0.2);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select option {
    background: var(--navy-deep);
}

.form-consent {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.form-consent input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.form-consent label {
    font-size: 0.85rem;
    color: var(--ice);
    line-height: 1.5;
}

.form-submit {
    width: 100%;
}

/* --- PAGINA ABOUT --- */
.about-hero {
    padding: 10rem 4rem 4rem;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: var(--ice);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-section {
    padding: 6rem 4rem;
    background: var(--navy);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--ice);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-section {
    padding: 6rem 4rem;
    background: var(--navy-deep);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, rgba(0,35,97,0.5) 0%, rgba(0,19,59,0.7) 100%);
    border: 1px solid rgba(60,180,229,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--sky);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--ice);
    line-height: 1.7;
}

/* --- FOOTER --- */
footer {
    padding: 4rem;
    background: var(--navy-deep);
    border-top: 1px solid rgba(60,180,229,0.1);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--ice);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--ice);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(60,180,229,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: var(--ice);
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--ice);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-address {
    color: var(--ice);
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: normal;
}

/* --- RESPONSIVE: TABLET --- */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- RESPONSIVE: MOBILE --- */
@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 2rem 4rem;
    }
    
    .stats,
    .problem,
    .solution,
    .testimonials,
    .cta {
        padding: 4rem 2rem;
    }
    
    .stats-grid,
    .problem-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .legal-page,
    .contact-page {
        padding: 8rem 2rem 4rem;
    }
}

/* --- UTILIDADES --- */
.text-green {
    color: var(--green);
}

/* --- ELEMENTOS VISUALES --- */
.solution-visual {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    border-radius: 30px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(60,180,229,0.2);
}

.solution-visual-content {
    text-align: center;
}

.solution-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--green);
}

.solution-visual-content p {
    color: var(--ice);
    font-size: 1.2rem;
}

.about-visual {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-content {
    text-align: center;
}

.about-icon {
    font-size: 4rem;
    color: var(--sky);
}

.about-visual-content p {
    color: var(--ice);
}
