:root {
    --primary-dark: #9e2a58; /* El color vino de la izquierda */
    --primary-light: #ff6b8b; /* El rosa brillante de la derecha */
    --accent: #ff8fab;
    --white: #ffffff;
    --text-grey: #e0e0e0;
    --all: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffd1dc; /* Fondo general rosado suave */
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor Principal (La Tarjeta) */
.container {
    width: 90%;
    max-width: 1200px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 85vh;
    min-height: 600px;
}

/* Header / Barra de Navegación */
header {
    background: var(--white);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.6rem;
    /*text-transform: uppercase;*/
}
.logo_b{
  height: 50px;
}

.logo-circle {
    width: 35px;
    height: 35px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.mona{
  height: 50px;
  margin-left: 20px;
}
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

/* Layout Principal dividido en dos */
.main-content {
    display: flex;
    flex: 1; /* Ocupa el resto del espacio vertical */
}

/* Lado Izquierdo (Texto) */
.left-panel {
    background-color: var(--primary-dark);
    width: 50%;
    padding: 40px 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.pill-badge {
    background: var(--white);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
    text-transform: uppercase;
}

.title-group {
    position: relative;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    letter-spacing: 2px;
    color: #ff8fab; /* Rosa claro para el texto */
}

h1 span {
    color: var(--white);
    display: block;
}

/* El círculo de la fecha */
.date-circle {
    position: absolute;
    top: 20px;
    right: 80px; /* Ajustar según tamaño de pantalla */
    background: var(--white);
    color: var(--primary-dark);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: rotate(-10deg);
}

.date-month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.date-day {
    font-size: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

p.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-grey);
    max-width: 400px;
    margin-bottom: 40px;
}
p.description {
    /* ... tus otros estilos ... */
    height: 70px;
    transition: opacity 0.3s ease; /* Esto hará que el texto aparezca suavemente */
}

.action-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-see-more {
    background: var(--primary-light);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 139, 0.4);
    transition: transform 0.2s;
}

.btn-see-more:hover {
    transform: scale(1.05);
}

.atentamente {
  font-size: 14px;
  margin-bottom: 3px;
}

.f_fernando{
  display: flex;
  justify-content: flex-start;
}

.fernando {
    font-style: normal; /* Simulado icono */
    padding: 5px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 15px;
    text-decoration: none;
    transition: var(--all);
    color: #FFF;
}
.fernando:hover{
  background: rgba(255,255,255,0.6);
}

.pagination-dots {
    display: flex;
    gap: 8px;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}

.dot {
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
}
.dot.active {
    background-color: var(--white);
}

/* Lado Derecho (Imagen) */
.right-panel {
    width: 50%;
    background: linear-gradient(135deg, #ff8fab 0%, #ff5c8d 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Efecto de rayos de sol simulado con CSS */
.sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.1) 0deg 10deg,
        transparent 10deg 20deg
    );
    transform: translate(-50%, -50%);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Placeholder para la ilustración de la mujer */
.illustration-placeholder {
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-image: url('foto.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    */
    /* Si tienes la imagen recortada sin fondo, úsala aquí */
}
.foto{
  height: 350px;
  border-radius: 30px;
}
.zoom_corazon{
    width: 90%;
    animation: zoom-in-zoom-out 4s ease-in infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.9, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* Responsive */
@media screen and (max-width: 1100px){
  h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 900px), screen and (max-height: 725px) {
    .zoom_corazon{
        width: 65%;
    }
    body{
      height: auto;
    }
    .container {
        height: auto;
        min-height: auto;
        flex-direction: column;
        width: 92%;
        margin: 25px 0;
    }
    .main-content {
        flex-direction: column;
    }
    .left-panel, .right-panel {
        width: 100%;
    }
    .right-panel {
        height: 400px;
    }
    header {
        padding: 10px 20px;
    }
    nav {
        display: none; /* Ocultar menú en móvil por simplicidad */
    }
    h1 {
        font-size: 4rem;
    }
}
@media screen and (max-width: 700px){
    .zoom_corazon{
        width: 85%;
    }
}
@media screen and (max-width: 500px) {
    .zoom_corazon{
        width: 95%;
    }
    .left-panel{
        padding: 40px 25px;
    }
  .foto{
    height: auto;
    width: 80%;
  }
  .logo_b{
    height: 35px;
  }
  .mona{
    height: 35px;
  }
  .logo{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
    p.description {
        height: auto;
    }
}
@media screen and (max-width: 400px) {
  h1 {
      font-size: 3rem;
  }
  .zoom_corazon{
    width: 100%;
}
}
@media screen and (max-width: 315px) {
  .mona{
    display: none;
  }
}