﻿/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: #f1f5f9;
    line-height: 1.6; 
}

/* =========================
   HEADER
========================= */
.header-pro { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #020617;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 150px;   /* tamaÃ±o del logo */
    height: 150px;  /* opcional para que quede cuadrado */
    object-fit: cover;
}

.logo h1 {
    font-family: 'Alfa Slab One', cursive;
    color: #22c55e;
}

/* NAV */
nav a {
    color: #f1f5f9;
    margin-left: 20px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Alfa Slab One', cursive;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #22c55e;
}

/* =========================
   HERO
========================= */
.hero-pro {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px;

    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("../img/n8.jpg");
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h2 {
    font-size: 60px;
    font-family: 'Alfa Slab One', cursive;
    line-height: 1.1;
}

.hero-content p {
    margin-top: 15px;
    font-size: 18px;
    color: #cbd5f5;
}

.reserve-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    min-width: 220px;
    padding: 16px 28px;
    border-radius: 8px;
    background: #22c55e;
    color: #020617;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.reserve-banner:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* BOTONES */
.buttons {
    margin-top: 25px;
}

.btn {
    background: #22c55e;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.btn:hover {
    background: #16a34a;
}

.btn-outline {
    border: 2px solid #22c55e;
    padding: 12px 25px;
    border-radius: 6px;
    margin-left: 10px;
    text-decoration: none;
    color: #22c55e;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #22c55e;
    color: black;
}

/* =========================
   BENEFICIOS
========================= */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    padding: 60px 40px;
}

.benefit {
    background: #020617;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.benefit:hover {
    transform: translateY(-5px);
}

/* =========================
   GENÃ‰TICAS
========================= */
.geneticas {
    padding: 80px 40px;
    text-align: center;
}

.geneticas h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.card {
    background: #020617;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* IMAGEN PERFECTA */
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #020617;
    transition: transform 0.35s ease;
}

.card:hover img {
    object-fit: contain;
}

/* TEXTO */
.card h3 {
    padding: 15px 15px 5px;
}

.card p {
    padding: 0 15px 20px;
    color: #94a3b8;
}

/* HOVER */
.card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* =========================
   ABOUT
========================= */
.about {
    padding: 80px 40px;
    background: #020617;
    text-align: center;
}

.about h2 {
    margin-bottom: 15px;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 20px;
    background: #020617;
}

/* =========================
   CONTACTO
========================= */
.contact-hero {
    height: 60vh;
}

.contact-section {
    padding: 80px 40px;
    background:
        radial-gradient(circle at top left, rgba(34,197,94,0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(236,72,153,0.14), transparent 28%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form,
.contact-info {
    background: linear-gradient(180deg, rgba(2,6,23,0.96), rgba(15,23,42,0.96));
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(148,163,184,0.12);
}

.contact-form h2,
.contact-info h2 {
    margin-bottom: 20px;
    font-family: 'Alfa Slab One', cursive;
    font-size: 34px;
}

.contact-form p,
.contact-info p {
    color: #cbd5e1;
    font-size: 17px;
}

.contact-actions {
    display: grid;
    gap: 18px;
    margin-top: 25px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    text-decoration: none;
    border-radius: 20px;
    color: #f8fafc;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

.whatsapp-card {
    background: linear-gradient(135deg, #15803d, #22c55e);
}

.instagram-card {
    background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
}

.contact-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
}

.contact-card-text strong {
    font-family: 'Alfa Slab One', cursive;
    font-size: 24px;
    font-weight: normal;
}

.contact-card-text span {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
}

.contact-copy {
    margin-top: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .countdown-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .time-box span {
        font-size: 34px;
    }

    .header-pro {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        font-size: 20px;
    }

    .hero-pro {
        padding: 40px 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 35px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 26px;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
    }

    .contact-card-text strong {
        font-size: 20px;
    }
}

/* =========================
   CUENTA REGRESIVA
========================= */
.countdown-section {
    padding: 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(2,6,23,0.92), rgba(15,23,42,0.92));
}

.countdown-section h2 {
    font-size: 32px;
    margin-bottom: 8px;
    font-family: 'Alfa Slab One', cursive;
}

.countdown-section p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
}

.time-box {
    background: #020617;
    border: 1px solid rgba(34,197,94,0.35);
    border-radius: 12px;
    padding: 18px 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.time-box span {
    display: block;
    font-size: 42px;
    line-height: 1;
    color: #22c55e;
    font-family: 'Alfa Slab One', cursive;
}

.time-box small {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================
   CARRUSEL CULTIVO
========================= */
.cultivo-carousel {
    padding: 70px 40px;
    text-align: center;
}

.cultivo-carousel h2 {
    font-size: 32px;
    margin-bottom: 28px;
}

.carousel-shell {
    display: grid;
    grid-template-columns: 64px 1fr 64px;
    align-items: center;
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(34,197,94,0.35);
    background: #020617;
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

.carousel-track {
    display: flex;
    transition: transform 0.45s ease;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(34,197,94,0.5);
    border-radius: 10px;
    background: #020617;
    color: #22c55e;
    font-size: 24px;
    cursor: pointer;
    transition: 0.25s;
}

.carousel-btn:hover {
    background: #22c55e;
    color: #020617;
}
@media (max-width: 768px) {
    .carousel-shell {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 46px;
        height: 46px;
        justify-self: center;
    }

    .carousel-slide img {
        height: 360px;
    }
}

/* =========================
   AJUSTES MOVIL FINAL
========================= */
@media (max-width: 768px) {
    .header-pro {
        padding: 16px;
        gap: 12px;
    }

    .logo {
        flex-direction: column;
        gap: 8px;
    }

    .logo img {
        width: 92px;
        height: 92px;
    }

    .logo h1 {
        font-size: 30px;
        line-height: 1;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
    }

    nav a {
        margin-left: 0;
        font-size: 18px;
    }

    .hero-pro {
        min-height: 72vh;
        height: auto;
        padding: 36px 16px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .reserve-banner {
        width: 100%;
        min-width: 0;
    }

    .benefits,
    .geneticas,
    .about,
    .contact-section,
    .cultivo-carousel,
    .countdown-section {
        padding: 42px 16px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card img {
        height: 240px;
    }

    .countdown-grid {
        gap: 12px;
    }

    .time-box {
        padding: 14px 8px;
    }

    .time-box span {
        font-size: 30px;
    }

    .contact-form,
    .contact-info {
        padding: 22px;
        border-radius: 16px;
    }

    .contact-card {
        padding: 16px;
    }

    .carousel-slide img {
        height: 320px;
    }
}

/* =========================
   FIX OVERFLOW MOVIL
========================= */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    nav a {
        font-size: 17px;
    }

    .benefits,
    .cards,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .countdown-section {
        overflow: hidden;
    }

    .countdown-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .time-box {
        min-width: 0;
    }

    .time-box span {
        font-size: 30px;
    }

    .carousel-shell {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* =========================
   TUNE RELOJ MOVIL
========================= */
@media (max-width: 480px) {
    .countdown-section {
        padding: 34px 12px;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .time-box {
        padding: 10px 6px;
        border-radius: 10px;
    }

    .time-box span {
        font-size: 24px;
    }

    .time-box small {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

/* =========================
   FIX RELOJ EXTRA
========================= */
@media (max-width: 768px) {
    .countdown-section {
        padding: 26px 10px !important;
    }

    .countdown-section .countdown-grid {
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px !important;
    }

    .countdown-section .time-box {
        min-width: 0 !important;
        padding: 8px 4px !important;
        border-radius: 8px !important;
        overflow: hidden;
    }

    .countdown-section .time-box span {
        font-size: clamp(18px, 7vw, 22px) !important;
        line-height: 1 !important;
    }

    .countdown-section .time-box small {
        font-size: 10px !important;
        letter-spacing: 0 !important;
    }
}

/* =========================
   SELECTOR DE IDIOMA
========================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.language-toggle {
    min-width: 54px;
    height: 38px;
    border: 1px solid rgba(34,197,94,0.7);
    border-radius: 999px;
    background: #22c55e;
    color: #020617;
    padding: 0 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(34,197,94,0.2);
    transition: 0.25s;
}

.language-toggle:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* =========================
   BANCOS DE SEMILLAS
========================= */
.seed-banks {
    padding: 70px 40px;
    background:
        radial-gradient(circle at top left, rgba(34,197,94,0.16), transparent 30%),
        linear-gradient(180deg, #020617, #0f172a);
}

.seed-banks-content {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.seed-banks h2 {
    font-size: 34px;
    margin-bottom: 12px;
    font-family: 'Alfa Slab One', cursive;
}

.seed-banks p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: #cbd5e1;
}

.seed-bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.seed-bank {
    border: 1px solid rgba(34,197,94,0.45);
    border-radius: 12px;
    background: rgba(2,6,23,0.86);
    padding: 18px 14px;
    color: #f8fafc;
    font-family: 'Alfa Slab One', cursive;
    font-size: 18px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        gap: 12px;
    }

    .seed-banks {
        padding: 42px 16px;
    }

    .seed-banks h2 {
        font-size: 26px;
    }
}


.seed-catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: #22c55e;
    color: #020617;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(34,197,94,0.24);
    transition: 0.25s;
}

.seed-catalog-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}
/* =========================
   AJUSTES RESPONSIVE FINALES 2026
========================= */
img {
    max-width: 100%;
}

.header-pro {
    position: relative;
    z-index: 5;
}

.header-actions nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 18px;
}

.header-actions nav a {
    margin-left: 0;
    white-space: nowrap;
}

.language-toggle,
.seed-catalog-btn {
    -webkit-tap-highlight-color: transparent;
}

.countdown-section {
    padding: 34px 18px;
}

.countdown-section h2 {
    font-size: clamp(22px, 3vw, 30px);
}

.countdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 560px;
    gap: 12px;
}

.time-box {
    min-width: 0;
    padding: 14px 8px;
}

.time-box span {
    font-size: clamp(24px, 3.5vw, 34px);
}

.time-box small {
    font-size: 12px;
    letter-spacing: 0;
}

.seed-banks {
    padding: 56px 18px;
}

.seed-banks h2 {
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.15;
}

.seed-bank-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.seed-bank {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: clamp(15px, 2.3vw, 18px);
    border-radius: 10px;
}

.seed-catalog-btn {
    max-width: 100%;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .header-pro {
        padding: 14px 16px;
        gap: 16px;
    }

    .logo img {
        width: 92px;
        height: 92px;
    }

    .logo h1 {
        font-size: clamp(24px, 4vw, 34px);
    }

    nav a {
        font-size: 18px;
    }

    .hero-pro {
        min-height: 68vh;
        height: auto;
        padding: 54px 22px;
    }

    .hero-content h2 {
        font-size: clamp(34px, 7vw, 48px);
    }
}

@media (max-width: 768px) {
    .header-pro {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 12px;
    }

    .logo {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .logo img {
        width: 64px;
        height: 64px;
    }

    .logo h1 {
        font-size: clamp(22px, 7vw, 28px);
    }

    .header-actions {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .header-actions nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 0;
        width: 100%;
    }

    .header-actions nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 6px 4px;
        border: 1px solid rgba(34,197,94,0.22);
        border-radius: 8px;
        background: rgba(15,23,42,0.75);
        font-size: clamp(13px, 3.8vw, 16px);
        line-height: 1.1;
        white-space: normal;
    }

    .language-toggle {
        width: 48px;
        min-width: 48px;
        height: 48px;
        padding: 0;
        border-radius: 50%;
        font-size: 13px;
        box-shadow: none;
    }

    .hero-pro {
        min-height: 58vh;
        padding: 42px 16px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: clamp(28px, 9vw, 36px);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .hero-content p {
        font-size: 16px;
    }

    .reserve-banner {
        width: 100%;
        min-width: 0;
    }

    .benefits,
    .geneticas,
    .about,
    .contact-section,
    .cultivo-carousel,
    .countdown-section,
    .seed-banks {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .countdown-section {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 360px !important;
        gap: 8px !important;
    }

    .time-box {
        padding: 10px 6px !important;
        border-radius: 9px !important;
    }

    .time-box span {
        font-size: clamp(20px, 7vw, 26px) !important;
    }

    .time-box small {
        font-size: 10px !important;
        letter-spacing: 0 !important;
    }

    .seed-bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .seed-bank {
        padding: 14px 8px;
        font-size: 14px;
    }

    .seed-catalog-btn {
        width: 100%;
        min-height: 44px;
        padding: 10px 14px;
        margin-top: 20px;
    }

    .carousel-slide img {
        height: min(320px, 72vw);
    }
}

@media (max-width: 420px) {
    .header-actions {
        grid-template-columns: 1fr 44px;
        gap: 8px;
    }

    .language-toggle {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .seed-bank-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        gap: 12px;
    }

    .contact-card-text strong {
        font-size: 18px;
    }
}

