```css id="7f1s2a"
/* =========================================================
   RADIO GETSEMANI
   CLEAN MODERN UI
========================================================= */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================================================
   BODY
========================================================= */

body{

    font-family:'Inter',sans-serif;

    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #dbeafe 50%,
            #bfdbfe 100%
        );

    color:#0f172a;

    min-height:100vh;
}

/* =========================================================
   GLOBAL LINKS
========================================================= */

a{

    color:#2563eb;

    text-decoration:none;

    transition:.3s ease;
}

a:hover{

    opacity:.85;
}

/* =========================================================
   HEADER
========================================================= */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:
        rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    border-bottom:
        1px solid rgba(0,0,0,.05);

    box-shadow:
        0 4px 20px rgba(0,0,0,.04);
}

/* NAV CONTAINER */

.container_info{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    padding:18px 20px;
}

/* MENU */

.container_info__telefono{

    display:flex;

    align-items:center;

    gap:30px;
}

/* HEADER LINKS */

header a{

    text-decoration:none;

    color:#0f172a;

    font-weight:700;

    font-size:1rem;
}

header a:hover{

    color:#2563eb;
}

/* TITLE */

.logo-title{

    font-size:1.4rem;

    font-weight:700;
}

/* =========================================================
   MAIN
========================================================= */

main{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:
        90px 20px 40px 20px;
}

/* =========================================================
   HERO
========================================================= */

.hero{

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:
        20px 20px 10px 20px;
}

/* HERO CONTENT */

.hero-content{

    width:100%;

    max-width:900px;

    margin:auto;
}

/* =========================================================
   LOGO
========================================================= */

.logo{

    width:220px;

    border-radius:28px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);

    transition:.3s ease;
}

.logo:hover{

    transform:
        scale(1.03)
        translateY(-4px);
}

/* =========================================================
   TITLES
========================================================= */

h1{

    margin-top:25px;

    margin-bottom:10px;

    font-size:4rem;

    font-weight:700;

    line-height:1.1;

    color:#0f172a;
}

h2{

    margin-bottom:25px;

    text-align:center;

    font-size:2rem;

    color:#0f172a;
}

/* =========================================================
   TEXT
========================================================= */

.slogan{

    margin-top:10px;

    margin-bottom:20px;

    font-size:1.5rem;

    color:#334155;

    font-weight:600;
}

.mensaje{

    max-width:750px;

    margin:auto;

    font-size:1.15rem;

    line-height:1.8;

    color:#475569;
}

/* =========================================================
   PLAYER
========================================================= */

audio{

    width:100%;

    max-width:520px;

    margin-top:30px;

    border-radius:50px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}

/* =========================================================
   CARDS
========================================================= */

.content-card{

    background:white;

    border-radius:28px;

    padding:40px;

    margin-top:30px;

    margin-bottom:30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

/* =========================================================
   PROGRAMS
========================================================= */

.program-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:20px;
}

/* PROGRAM ITEM */

.program-item{

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #dbeafe
        );

    padding:25px;

    border-radius:20px;

    text-align:center;

    font-weight:600;

    transition:.3s ease;
}

.program-item:hover{

    transform:
        translateY(-5px);

    box-shadow:
        0 10px 20px rgba(0,0,0,.08);
}

/* =========================================================
   VERSES
========================================================= */

#dailyVersesWrapper{

    color:#334155;

    line-height:1.8;

    text-align:center;
}

#dailyVersesWrapper a{

    color:#2563eb;

    font-weight:600;
}

/* =========================================================
   CONTACT FORM
========================================================= */

.contact-card{

    width:100%;

    max-width:850px;

    margin:20px auto 40px auto;

    background:white;

    border-radius:30px;

    padding:50px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

/* FORM */

.contact-form{

    width:100%;

    display:flex;

    flex-direction:column;

    gap:24px;
}

/* GROUP */

.contact-form .form-group{

    width:100%;

    display:flex;

    flex-direction:column;
}

/* LABEL */

.contact-form label{

    margin-bottom:10px;

    font-size:1rem;

    font-weight:600;

    color:#0f172a;
}

/* INPUTS */

.contact-form input,
.contact-form textarea{

    width:100%;

    border:none;

    background:#f1f5f9;

    border-radius:18px;

    padding:18px;

    font-size:1rem;

    color:#0f172a;

    outline:none;

    transition:.3s ease;

    appearance:none;
}

/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus{

    background:white;

    box-shadow:
        0 0 0 4px rgba(37,99,235,.12);
}

/* TEXTAREA */

.contact-form textarea{

    resize:none;

    min-height:180px;
}

/* CAPTCHA */

.captcha-wrapper{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    margin-top:10px;
}

/* BUTTON */

.contact-form .btn-submit{

    width:100%;

    border:none;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #3b82f6
        );

    color:white;

    padding:18px;

    border-radius:18px;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:.3s ease;
}

/* BUTTON HOVER */

.contact-form .btn-submit:hover{

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 20px rgba(37,99,235,.2);
}

/* =========================================================
   FOOTER
========================================================= */

footer{

    margin-top:60px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eff6ff
        );

    border-top:
        1px solid rgba(0,0,0,.05);

    padding:50px 20px;

    box-shadow:
        0 -5px 20px rgba(0,0,0,.03);
}

/* FOOTER CONTENT */

.footer-content{

    max-width:1200px;

    margin:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:25px;

    text-align:center;
}

/* FOOTER BRAND */

.footer-brand img{

    width:90px;

    border-radius:20px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}

.footer-brand h3{

    margin-top:15px;

    font-size:1.5rem;

    color:#0f172a;
}

.footer-brand p{

    margin-top:8px;

    color:#64748b;
}

/* FOOTER LINKS */

.footer-links{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    justify-content:center;
}

.footer-links a{

    color:#2563eb;

    font-weight:600;
}

/* FOOTER CONTACT */

.footer-contact{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    justify-content:center;

    color:#475569;
}

/* COPYRIGHT */

.footer-copy{

    margin-top:10px;

    font-size:.95rem;

    color:#94a3b8;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .container_info{

        flex-direction:column;

        gap:15px;

        text-align:center;
    }

    .container_info__telefono{

        gap:20px;
    }

    main{

        padding-top:120px;
    }

    .logo{

        width:160px;
    }

    h1{

        font-size:2.5rem;
    }

    .slogan{

        font-size:1.1rem;
    }

    .mensaje{

        font-size:1rem;
    }

    .content-card,
    .contact-card{

        padding:25px;
    }

    .footer-contact{

        flex-direction:column;

        gap:10px;
    }

    .footer-links{

        gap:20px;
    }

    .g-recaptcha{

        transform:scale(.88);

        transform-origin:center;
    }
}

@media(max-width:480px){

    .g-recaptcha{

        transform:scale(.78);

        transform-origin:center;
    }
}
```

