/* ===================================================================================================================
                                                     LIBERACION TORTUGA
====================================================================================================================== */
.turtle-clean {
    padding: 260px 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(245, 222, 179, 0.08), transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(245, 222, 179, 0.05), transparent 50%),
        linear-gradient(120deg, #020913 0%, #07152d 40%, #0a1f3d 60%, #07152d 80%, #020913 100%);
}

.turtle-clean::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 55%, transparent 80%);
    pointer-events: none;
}

.turtle-clean-container {
    max-width: 1800px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: center;
}

.turtle-clean-visual {
    height: 520px;
    border-radius: 28px;
    overflow: hidden;
}

.turtle-clean-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.turtle-clean-text h2 {
    font-size: 58px;
    margin-bottom: 25px;
}

.turtle-eyebrow {
    letter-spacing: 5px;
    font-size: 17px;
    opacity: .6;
    display: block;
    margin-bottom: 15px;
}

.turtle-clean-text p {
    font-size: 20px;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
}

.turtle-clean-btn {
    position: relative;
    display: inline-block;
    margin-top: 40px;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(16, 185, 129, 0.08));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 222, 128, 0.45);
    color: #dcfce7;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: all 0.4s ease;
}

.turtle-clean-btn span {
    position: relative;
    z-index: 2;
}

.turtle-clean-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(134, 239, 172, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.turtle-clean-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(120deg, rgba(134, 239, 172, 0.5), rgba(34, 197, 94, 0.35), rgba(21, 128, 61, 0.25));
    opacity: 0.15;
    filter: blur(8px);
    transition: all 0.4s ease;
}

.turtle-clean-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.4), rgba(16, 185, 129, 0.15));
}

.turtle-clean-btn:hover::before {
    opacity: 1;
}

.turtle-clean-btn:hover::after {
    opacity: 0.25;
}

.turtle-clean-btn:active {
    transform: scale(0.97);
}

.turtle-clean-btn-yellow {
    position: relative;
    display: inline-block;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(200, 200, 200, 0.03));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.turtle-clean-btn-yellow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.turtle-clean-btn-yellow::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), rgba(200, 200, 200, 0.2), rgba(160, 160, 160, 0.1));
    opacity: 0.12;
    filter: blur(8px);
    transition: all 0.4s ease;
}

.turtle-clean-btn-yellow:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(200, 200, 200, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
}

.turtle-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: nowrap;
}

.turtle-clean-gallery {
    margin-top: 120px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.turtle-clean-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width:1100px) {

    .turtle-clean-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .turtle-clean-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 850px;
    }

    .turtle-clean-text p {
        max-width: 100%;
        text-align: justify;
    }

    .turtle-clean-visual {
        width: 100%;
        height: 500px;
    }

    .turtle-clean-btn {
        margin-top: 10px;
    }

    /* GALERÍA ABAJO */
    .turtle-clean-gallery {
        margin-top: 80px;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .turtle-clean-gallery img {
        height: 220px;
    }

}

@media(max-width:493px) {

    .turtle-clean {
        padding: 140px 7%;
    }

    .turtle-clean-text h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .turtle-clean-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .turtle-clean-visual {
        height: 300px;
    }

    .turtle-clean-btn,
    .turtle-clean-btn-yellow {
        width: 90%;
        text-align: center;
        justify-content: center;
        padding: 14px 22px;
        font-size: 14px;
    }

    .turtle-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    /* IMÁGENES UNA DEBAJO DE OTRA */
    .turtle-clean-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 60px;
    }

    .turtle-clean-gallery img {
        height: 240px;
    }

}

/* ===================================================================================================================
                                                     LIMPIEZA
====================================================================================================================== */

.beach-clean {
    padding: 260px 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(245, 222, 179, 0.08), transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(245, 222, 179, 0.05), transparent 50%),
        linear-gradient(120deg, #020913 0%, #07152d 40%, #0a1f3d 60%, #07152d 80%, #020913 100%);
}

.beach-clean::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 55%, transparent 80%);
    pointer-events: none;
}

.beach-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.beach-text h2 {
    font-size: 56px;
    margin-bottom: 25px;
}

.beach-eyebrow {
    letter-spacing: 5px;
    font-size: 17px;
    opacity: .6;
    display: block;
    margin-bottom: 15px;
}

.beach-text p {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    text-align: justify;
}

.beach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
    gap: 20px;
}

.beach-img {
    overflow: hidden;
    border-radius: 18px;
}

.beach-img.big {
    grid-row: span 2;
}

.beach-img.wide {
    grid-column: span 2;
}

.beach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.beach-img:hover img {
    transform: scale(1.05);
}

@media(max-width:1100px) {

    .beach-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .beach-text p {
        margin: auto;
    }

    .beach-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .beach-img {
        height: 540px;
        width: 100%;
    }

    .beach-img.big,
    .beach-img.wide {
        grid-row: unset;
        grid-column: unset;
    }

    .beach-img img {
        height: 100%;
        object-fit: cover;
    }

}

@media(max-width:430px) {

    .beach-clean {
        padding: 140px 7%;
    }

    .beach-text h2 {
        font-size: 36px;
    }

    .beach-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .beach-img {
        height: 300px;
    }

}

/* ===================================================================================================================
                                                     REFORESTACION
====================================================================================================================== */

.reforest-pro {
    padding: 260px 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 25%, rgba(134, 239, 172, 0.08), transparent 40%),
        radial-gradient(circle at 80% 75%, rgba(245, 222, 179, 0.06), transparent 45%),
        linear-gradient(120deg, #020913 0%, #07152d 35%, #0a1f3d 60%, #07152d 85%, #020913 100%);
}

.reforest-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 55%, transparent 80%);
    pointer-events: none;
}

.reforest-pro::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 70%);
    filter: blur(90px);
    pointer-events: none;
}

.reforest-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 120px;
    align-items: center;
}

.reforest-text h2 {
    font-size: 58px;
    margin-bottom: 25px;
}

.reforest-eyebrow {
    letter-spacing: 5px;
    font-size: 17px;
    opacity: .6;
    display: block;
    margin-bottom: 15px;
}

.reforest-text p {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    text-align: justify;
}

.reforest-visual {
    height: 600px;
    overflow: hidden;
    border-radius: 28px;
    position: relative;
}

.reforest-track {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reforest-track img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    transition: .6s ease;
}

.reforest-track img:nth-child(2) {
    transform: translateX(40px);
    opacity: .8;
}

.reforest-track img:nth-child(3) {
    transform: translateX(-30px);
    opacity: .7;
}

.reforest-track img:nth-child(4) {
    transform: translateX(20px);
    opacity: .6;
}


@media(max-width:1100px) {

    .reforest-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .reforest-text {
        order: 1;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reforest-text p {
        text-align: justify;
        margin-left: auto;
        margin-right: auto;
    }

    .reforest-btn {
        justify-content: center;
    }

    .reforest-visual {
        order: 2;
        width: 100%;
        max-width: 600px;
        height: auto;
        overflow: visible;
    }

    .reforest-track {
        display: flex;
        flex-direction: column;
        gap: 30px;
        transform: none !important;
    }

    .reforest-track img {
        width: 100%;
        height: 560px;
        object-fit: cover;
        border-radius: 20px;
        transform: none !important;
        opacity: 1 !important;
    }

}

@media(max-width:430px) {

    .reforest-pro {
        padding: 140px 7%;
    }

    .reforest-text h2 {
        font-size: 38px;
    }

    .reforest-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .reforest-track img {
        height: 380px;
    }
}


/* ===================================================================================================================
                                                     EDUCACION AMBIENTAL
====================================================================================================================== */


.edu-editorial {
    padding: 260px 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 236, 179, 0.08), transparent 40%),
        radial-gradient(circle at 75% 70%, rgba(134, 239, 172, 0.06), transparent 45%),
        linear-gradient(120deg, #020913 0%, #07152d 40%, #0c2340 60%, #07152d 85%, #020913 100%);
}

.edu-editorial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 55%, transparent 80%);
    pointer-events: none;
}

.edu-editorial::after {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 236, 179, 0.12), rgba(134, 239, 172, 0.06), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.edu-editorial-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.edu-editorial-text {
    max-width: 520px;
}

.edu-editorial-text h2 {
    font-size: 58px;
    margin-bottom: 25px;
}

.edu-eyebrow {
    letter-spacing: 5px;
    font-size: 13px;
    opacity: .6;
    display: block;
    margin-bottom: 15px;
}

.edu-editorial-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .85);
    text-align: justify;
}

.edu-editorial-visual {
    display: flex;
    justify-content: center;
    gap: 40px;
}


.edu-editorial-visual .col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.edu-editorial-visual .offset {
    margin-top: 120px;
}

.edu-editorial-visual img {
    width: 260px;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    transition: .45s cubic-bezier(.19, 1, .22, 1);
}

.edu-editorial-visual img:hover {
    transform: translateY(-10px) scale(1.02);
}

@media(max-width:1100px) {

    .edu-editorial-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .edu-editorial-text {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .edu-editorial-text p {
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
    }

    .edu-btn {
        justify-content: center;
    }

    .edu-editorial-visual {
        order: 2;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .edu-editorial-visual .offset {
        margin-top: 0;
    }

    .edu-editorial-visual img {
        width: 900px;
        max-width: 500px;
        height: 580px;
        object-fit: cover;
    }
}

@media(max-width:430px) {

    .edu-editorial {
        padding: 140px 7%;
    }

    .edu-editorial-text h2 {
        font-size: 38px;
    }

    .edu-editorial-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .edu-editorial-visual img {
        width: 300px;
        height: 420px;
    }
}

/* ===================================================================================================================
                                                    TALLER
====================================================================================================================== */

.herp-split {
    padding: 260px 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.05), transparent 45%),
        linear-gradient(120deg, #01060f 0%, #07152d 35%, #0b1e3d 60%, #07152d 85%, #01060f 100%);
}

.herp-split::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,transparent 20%,rgba(255, 255, 255, 0.05) 45%,rgba(255, 255, 255, 0.08) 50%,rgba(255, 255, 255, 0.05) 55%,transparent 80%);
    pointer-events: none;
}

.herp-split::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 850px;
    height: 400px;
    background: radial-gradient(circle,rgba(255, 255, 255, 0.08),rgba(200, 200, 200, 0.05),transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.herp-hero {
    position: relative;
    height: 650px;
    border-radius: 28px;
    overflow: hidden;
}

.herp-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55);
}

.herp-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 620px;
    background: rgba(5, 15, 30, .85);
    padding: 50px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.herp-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.herp-eyebrow {
    letter-spacing: 5px;
    font-size: 17px;
    opacity: .6;
    display: block;
    margin-bottom: 15px;
    margin-top: 10px;
}

.herp-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .85);
    text-align: justify;
}

.turtle-actions.no-margin {
    margin-top: -37px;
}

.herp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: .35s cubic-bezier(.19, 1, .22, 1);
}

.herp-btn::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url("https://cdn-icons-png.flaticon.com/512/733/733585.png") center/contain no-repeat;
}

.herp-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .6s;
}

.herp-btn:hover {
    transform: translateY(-4px);
}

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

.herp-gallery {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.herp-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s ease;
}

.herp-gallery img:hover {
    transform: scale(1.05);
}

@media(max-width:1100px) {

    .herp-split {
        padding: 180px 8%;
    }

    .herp-hero {
        height: 950px;
    }

    .herp-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 600px;
        width: 90%;
        height: 800px;
        padding: 40px;
        text-align: center;
    }

    .herp-content p {
        text-align: justify;
    }

    .herp-btn {
        justify-content: center;
        margin-top: 40px;
    }

    .herp-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .herp-gallery img {
        height: 420px;
    }

    .turtle-actions.no-margin {
        margin-top: 20px;
    }
}


@media(max-width:430px) {

    .herp-split {
        padding: 140px 7%;
    }

    .herp-hero {
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: auto;
    }

    .herp-content {
        order: 1;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 96%;
        max-width: 100%;
        padding: 0;
        background: none;
        backdrop-filter: none;
        text-align: center;
    }

    .herp-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .herp-content p {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
    }

    .herp-btn {
        justify-content: center;
        margin-top: 20px;
    }

    .herp-bg {
        order: 2;
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 20px;
    }

    .herp-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }

    .herp-gallery img {
        height: 400px;
    }
    
    .turtle-actions.no-margin {
        margin-top: 30px;
    }

}

/* ===================================================================================================================
                                                     FORMULARIO
====================================================================================================================== */

.turtle-form-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 8%;

    /* 🔥 FONDO BLANCO HUESO */
    background: 
        radial-gradient(circle at 20% 30%, rgba(7, 21, 45, 0.05), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(7, 21, 45, 0.03), transparent 40%),
        #F5F1E8;
}

/* =========================
   CONTENEDOR PRINCIPAL
========================= */
.turtle-modal-box {
    width: 100%;
    max-width: 950px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
    animation: fadeUp 0.6s ease;
}

/* =========================
   LEFT (VISUAL)
========================= */
.turtle-modal-left {
    background: radial-gradient(circle at 20% 30%, rgba(20, 184, 166, .3), transparent 40%),
        linear-gradient(180deg, #0f766e, #042f2e);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.turtle-left-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.turtle-left-content p {
    font-size: 15px;
    opacity: .8;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* STEPS */
.turtle-steps {
    display: flex;
    gap: 10px;
}

.step {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: .6;
}

.step.active {
    background: white;
    color: black;
    opacity: 1;
}

/* =========================
   RIGHT (FORM)
========================= */
.turtle-modal-right {
    background: #020913;
    padding: 45px;
}

.turtle-modal-right h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

/* =========================
   FORM
========================= */
.turtle-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ROW */
.form-row {
    display: flex;
    gap: 10px;
}

/* INPUTS */
.turtle-form input,
.turtle-form textarea,
.turtle-form select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    border-radius: 10px;
    color: white;
    outline: none;
    width: 100%;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* FOCUS */
.turtle-form input:focus,
.turtle-form textarea:focus,
.turtle-form select:focus {
    border: 1px solid #14b8a6;
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.25);
}

/* SELECT FIX */
.turtle-form select option {
    background: #020913;
    color: white;
}

/* TEXTAREA */
.turtle-form textarea {
    resize: none;
    min-height: 100px;
}

/* BUTTON */
.turtle-form button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.turtle-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

/* =========================
   ANIMACIÓN
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(.98);
    }

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

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px) {

    .turtle-modal-box {
        grid-template-columns: 1fr;
    }

    .turtle-modal-left {
        display: none;
    }

    .turtle-modal-right {
        padding: 30px;
    }

    .form-row {
        flex-direction: column;
    }
}

@media(max-width:430px) {

    .turtle-modal-right h3 {
        font-size: 18px;
    }

    .turtle-form input,
    .turtle-form textarea,
    .turtle-form select {
        padding: 12px;
    }

    .turtle-form button {
        padding: 12px;
    }
}