@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --fucsia:      #c4005e;
    --fucsia-dark: #a3004e;
    --fucsia-pale: #fdf0f5;
    --negro:       #111111;
    --gris-texto:  #444444;
    --gris-borde:  #e5e5e5;
    --blanco:      #ffffff;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--blanco);
    color: var(--negro);
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--fucsia);
    background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 74px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.22);
}

/* Logo sin filtro: se muestra exactamente como está en el servidor */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 74px;
    width: auto;
}

nav {
    display: flex;
    align-items: stretch;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.84em;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}

nav a:hover {
    background: rgba(0,0,0,0.15);
    border-bottom-color: rgba(255,255,255,0.75);
}

/* ===== BANNER ===== */
.banner {
    height: 75vh;
    position: relative;
    background: url('https://www.colombialove.com/images/slider/homeslider.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
}

.banner h1,
.banner h2 {
    position: relative;
    color: #fff;
    margin: 0;
}

.banner h1 {
    font-size: 3em;
    font-weight: 700;
    text-shadow: 0 3px 14px rgba(0,0,0,0.55);
    line-height: 1.2;
}

.banner h2 {
    font-size: 1.25em;
    font-weight: 300;
    margin-top: 12px;
    opacity: 0.9;
}

/* ===== CONTENIDO ===== */
.container {
    max-width: 1300px;
    margin: auto;
    padding: 60px 40px;
}

h2 { margin-bottom: 20px; color: var(--fucsia); }
h3 { color: var(--fucsia); }

/* ===== GRID ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}

/* ===== CARD ===== */
.card {
    background: var(--blanco);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--gris-borde);
    transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(196,0,94,0.13);
}

.card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.btn-card {
    display: block;
    background: var(--fucsia);
    padding: 17px 15px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: background 0.2s;
}

.btn-card .nombre {
    display: block;
    font-size: 1.15em;
    font-weight: 700;
}

.btn-card .detalle {
    display: block;
    font-size: 0.86em;
    opacity: 0.9;
    margin-top: 2px;
}

.btn-card:hover {
    background: var(--fucsia-dark);
}

/* ===== TEXTOS ===== */
.intro-text,
.seo-text {
    max-width: 860px;
    margin: 0 auto 20px;
    text-align: center;
}

.intro-text h2,
.seo-text h2 {
    color: var(--fucsia);
    font-size: 1.45em;
    margin-bottom: 10px;
}

.intro-text h3 {
    color: var(--fucsia);
    margin-bottom: 8px;
}

.intro-text p,
.seo-text p {
    color: var(--gris-texto);
    line-height: 1.75;
    font-size: 0.96em;
}

.intro-text a,
.seo-text a {
    color: var(--fucsia);
    font-weight: 600;
}

.intro-text strong { color: var(--negro); }

/* ===== FOOTER ===== */
footer {
    background: #111;
    padding: 50px 40px 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 28px;
    padding-bottom: 30px;
    border-bottom: 1px solid #252525;
}

footer h4 {
    color: var(--fucsia);
    font-size: 0.8em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

footer a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 7px;
    font-size: 0.86em;
    transition: color 0.2s;
}

footer a:hover { color: #fff; }

.seo-text {
    margin-top: 28px;
}

.seo-text h2 { font-size: 1.1em; }
.seo-text p  { color: #777; font-size: 0.85em; }

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #555;
    line-height: 2;
}

.footer-bottom a { color: #666; display: inline; margin: 0 3px; }
.footer-bottom a:hover { color: #aaa; }

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img { width: 34px; height: 34px; }

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.menu-toggle {
    display: none;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
    align-items: center;
}

.card{
    position:relative;
}

.badge-exclusiva{
    position:absolute;
    top:12px;
    left:12px;
    background:linear-gradient(45deg,#ff0066,#ff6a00);
    color:#fff;
    padding:7px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    box-shadow:0 4px 12px rgba(0,0,0,.35);
    z-index:20;
}

.badge-exclusiva::before{
    content:"★ ";
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        background: var(--fucsia);
        flex-direction: column;
        display: none;
    }

    nav a {
        padding: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    nav.active {
        display: flex;
    }
}


.info-premium{
    max-width:1100px;
    margin:40px auto;
    padding:35px;
    background:linear-gradient(180deg,#181818,#0d0d0d);
    border:1px solid rgba(255,46,136,.35);
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
}

.info-premium h2{
    color:#ff2e88;
    font-size:24px;
    margin-bottom:20px;
    text-align:center;
}

.info-premium p{
    color:#d8d8d8;
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
}

.info-premium strong{
    color:#ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header { padding: 0 16px; flex-wrap: wrap; min-height: auto; }
    .logo { padding: 10px 0; }
    nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
    nav a { padding: 8px 11px; font-size: 0.76em; white-space: nowrap; }
    .banner h1 { font-size: 2em; }
    .banner h2 { font-size: 1em; }
    .container { padding: 36px 16px; }
    footer { padding: 36px 16px 24px; }
}

@media (max-width: 480px) {
    .whatsapp-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
    .whatsapp-float img { width: 30px; height: 30px; }
}