/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Cinzel", serif;
    width: 100%;
    overflow-x: hidden;
    background-color: #FBF6EE;
}

html {
  scroll-behavior: smooth !important;
}

/* ================= HEADER ================= */

/* Franja superior */
.top-bar {
  background-color: #2B1D14; /* marrón oscuro elegante */
  color: white;
  text-align: right;
  padding: 5px 20px;
  font-size: 14px;
}

.top-bar a {
  color: #FBF6EE;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Sección del logo */
.logo-section {
  background-color: white; /* marrón chocolate */
  padding: 40px 0 20px;
}

.logo-img {
  width: 130px;           /* ajusta según tu logo */
  height: 100%;
  margin-top: -30px;
}

.brand-name {
  color: black;
  letter-spacing: 4px;
  font-size: 36px;
  margin: 0;
}

.brand-subtitle {
  color: black;
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .logo-section {
    justify-content: center;
    padding: 30px 20px;
  }
}

/* MENÚ PRINCIPAL */
.main-nav {
  background-color: #EFE9DF;
  text-align: center;
  border-top: 1px solid #D6C8B8;
  border-bottom: 1px solid #D6C8B8;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  display: inline-flex;
  gap: 40px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #5A3A2E;
  font-size: 14px;
  letter-spacing: 1.5px;
}
.main-nav a:hover {
    color: #ada08d !important; /* marrón oscuro igual que los botones/footer */
}

/* Submenú vertical: hover igual que footer */
.menu-dropdown-list li a:hover {
    background-color: #E5DDD1; /* marrón clarito */
    color: #4B2E2E; /* texto marrón oscuro */
}

/* Icono de Instagram superior: hover igual que footer */
.top-bar a:hover i {
    color: #7e5959;
    transition: all 0.3s ease;
}

/* SUBMENÚ VERTICAL */
.menu-dropdown {
  position: relative;
}

/* SUBMENÚ VERTICAL */
.menu-dropdown-list {
  position: absolute;
  top: 160%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #EFE9DF;
  border: 1px solid #D6C8B8;
  min-width: 220px;
  padding: 8px 0;
  z-index: 1000;

  /* ANIMACIÓN */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;

  /* Importante para que los elementos estén verticales */
  display: flex;
  flex-direction: column;
}

/* VISIBLE */
.menu-dropdown.active .menu-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ELEMENTOS DEL SUBMENÚ */
.menu-dropdown-list li {
  width: 100%;
}

.menu-dropdown-list li a {
  display: block;
  padding: 3x 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
}

.menu-dropdown-list li a:hover {
  background-color: #E5DDD1;
}



/* ================= BANNER ================= */

.container2 {
    position: relative;
    width: 100%;
    height: 60vh !important;
    background-image: url("imagenes/makeup.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Overlay marrón elegante */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 16, 15, 0.6); 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* Texto del banner */
.texto {
    color: #FBF6EE;
    font-size: 1.7rem;
    font-family: "Cinzel", serif !important;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    line-height: 1.4;
}


/* =========================
   SECCIÓN SOBRE MÍ
========================= */

.sobre-mi-section {
  padding: 100px 0;
  background-color: #f6f4f2;
}

.sobre-mi-mini {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #9a9a9a;
  display: inline-block;
  margin-bottom: 15px;
}

.sobre-mi-title {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
}

.sobre-mi-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Imagen con detalle elegante */
.sobre-mi-img {
  position: relative;
  max-width: 450px;
}

.sobre-mi-img img {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

/* Cuadro decorativo detrás */
.detalle-cuadro {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #d6cfc8;
  border-radius: 12px;
  z-index: 1;
}

/* =========================
   SERVICIOS HOVER
========================= */

.servicios-section {
  background: #f7f1e8;
  padding: 80px 0;
}

.servicios-title {
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-weight: 300;
}

/* Contenedor del servicio */
.servicio-item {
  position: relative;
  overflow: hidden;
  height: 380px;
}

.servicio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay que sube */
.servicio-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 240, 232, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  transition: bottom 0.4s ease;
}

.servicio-overlay img.logo-img-blanco {
  width: 140px;
  height: auto;
}


/* Hover */
.servicio-item:hover .servicio-overlay {
  bottom: 0;
}

/* Texto */
.servicio-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.servicio-overlay p {
  font-size: 0.95rem;
  color: #555;
  max-width: 220px;
}

/* =========================
   CARRUSEL
========================= */
/* Carrusel ocupa toda la pantalla */
.carrusel-full {
  width: 100vw;
  overflow: hidden;
  position: relative;
  height: 70%;
}

.carrusel-container {
  position: relative;
  width: 100%;
  height: 100%; /* Toma la altura del carrusel */
  overflow: hidden;
}

.carrusel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 80%;
}

.carrusel-slide img {
  width: 100vw;
  height: 100%;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  flex-shrink: 0;
}

/* Botones solo flechas */
.prev, .next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: none;
  color: white;
  border: none;
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
  color: #ccc;
}



/* =========================
   MAQUILLAJE DE NOVIAS
========================= */

.novias {
  background: #ffffff;
  padding: 120px 20px;
}

.novias-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  gap: 80px;
  padding-left: 20px;   /* margen izquierdo */
  padding-right: 20px; 
}

/* Imagen */
.novias-img img {
  width: 100%;
  height: 640px !important;
  object-fit: cover;
  border-radius: 12px;
}

/* Texto */
.novias-content {
  max-width: 420px;
}

.novias-tag {
  display: inline-block;
  border: 1px solid #000;
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.novias-content h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
}

.novias-texto {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.novias-texto.destacado {
  font-weight: 500;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .novias-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .novias{
    padding: 100px 52px;
  }

  .novias-content h2 {
    font-size: 2.4rem;
  }

  /* Ajuste altura imagen en móvil */
  .novias-img img {
    height: 400px !important; /* por ejemplo, más pequeña */
  }
}

/* Estilo personalizado para los botones */
.btn-marron {
    background-color: #4B2E2E; /* Marrón oscuro */
    color: #ffffff; /* Texto blanco */
    border: 2px solid #4B2E2E; /* Borde marrón igual al fondo */
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover: cambia un poco el marrón y agrega sombra */
.btn-marron:hover {
    background-color: #3A1F1F; /* Marrón más oscuro al pasar el ratón */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
}


/* =========================
   FOOTER
========================= */

.footer-marron {
  background: #f5eee8;
  padding: 80px 20px 0;
  text-align: center;
  color: black;
}

/* Marca */
.footer-marron .footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: black;
  
}

.footer-marron .footer-brand span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: black;
}

/* Menú */
.footer-marron .footer-menu {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-marron .footer-menu a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: black;
  transition: opacity 0.3s ease;
}

.footer-marron .footer-menu a:hover {
  color: #ada08d !important;

}

/* Redes */
.footer-marron .footer-social {
  padding-bottom: 60px;
}

.footer-marron .footer-social a {
  font-size: 1.5rem;
  color: black;
  transition: opacity 0.3s ease;
}

.footer-marron .footer-social a:hover {
  color: #ada08d !important;
}

/* FRANJA INFERIOR OSCURA */
.footer-marron .footer-bottom {
  background-color: #2B1D14;
  padding: 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer-marron .footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #e3d6c8;
}

/* =========================
   CONTACTO
========================= */

/* Hero */
.contacto-hero {
  min-height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5efe9;
  text-align: center;
}

/* Contenedor texto */
.contacto-overlay {
  padding: 60px 20px;
}

.contacto-overlay h1 {
  color: #2B1D14;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.contacto-overlay p {
  color: #6b5f55;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Sección */
.contacto-section {
  padding: 120px 0;
  background: #f6f4f2;
}

.contacto-mini {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #9a9a9a;
  display: inline-block;
  margin-bottom: 15px;
}

.contacto-title {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
}

.contacto-texto {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* Info */
.contacto-info {
  list-style: none;
  padding: 0;
}

.contacto-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contacto-info i {
  font-size: 1.2rem;
  color: #4B2E2E;
}

.contacto-info a {
  color: #000;
  text-decoration: none;
}

.contacto-info a:hover {
  text-decoration: underline;
}

/* Formulario */
.contacto-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfc7be;
  padding: 12px 5px;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  border-color: #4B2E2E;
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-section {
    padding: 90px 20px;
  }

  .contacto-form {
    padding: 35px;
  }

  .contacto-overlay h1 {
    font-size: 2.3rem;
  }
}

.contacto-mapa{
  margin-top: 9%;
}

.logo-section a {
  text-decoration: none; /* quita subrayado */
  color: inherit;        /* mantiene el color del texto original */
}


/* Responsive */
@media (max-width: 768px) {
  .footer-marron .footer-menu {
    flex-direction: column;
    gap: 18px;
  }
}

/* Ajuste pantallas grandes */
@media (min-width: 1200px) {
    .container2 {
        height: 80vh;
        background-attachment: scroll;
    }
}



.portfolio-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.card-novia {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.card-novia a {
  display: block;
  width: 100%;
  height: 100%;
}

.nombre-novia {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-size: 22px;
  font-family: "Georgia", serif;
  z-index: 2;
}

.card-novia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

.card-novia:hover::after {
  background: rgba(0,0,0,0.45);
}

@media (max-width: 900px) {
  .portfolio-3 {
    grid-template-columns: 1fr;
  }
}

.cta-contacto {
  width: 100%;
  text-align: center;
  margin: 80px 0;
}

.btn-contacto {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: #4B2E2E;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-family: "Georgia", serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contacto:hover {
  background: #b3aca2;
  color: #4B2E2E;
}


/* ===== HAMBURGUESA ===== */
.menu-hamburguesa {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.menu-hamburguesa span {
  display: block;
  width: 26px;
  height: 2px;
  background: #000;
  margin: 6px 0;
  transition: all 0.3s ease;
}


/* MENU OFFCANVAS BELLEZA */

.logo-menu{
height:50px;
}

.menu-belleza{
background:#FBF6EE;
width:320px;
}

.menu-belleza .nav-link{
font-size:18px;
letter-spacing:2px;
color:#4B2E2E;
padding:15px 0;
}

.menu-belleza .nav-link:hover{
color:#ada08d;
}

.logo-offcanvas{
width:120px;
margin-top:40px;
opacity:0.8;
}

.submenu-servicios{
  padding: 0;
  margin-top: 5px;
  display: flex;
  flex-direction: column; /* fuerza vertical */
  align-items: center; /* opcional si quieres centrado */
}

.submenu-servicios li{
  list-style: none;
  width: 100%;
  text-align: center;
}

.submenu-servicios .nav-link{
  display: block; /* cada link ocupa su línea */
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 6px 0;
  opacity: 0.8;
}

.submenu-servicios .nav-link:hover{
  opacity: 1;
}

.footer-legal {
  color: #e3d6c8;
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #e3d6c8;
  text-decoration: none;
  margin: 0 5px;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* HERO */

.hero-mirada{
height:50vh;
background-image:url("imagenes/mirada.png");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-texto h1{
font-size:70px;
font-weight:300;
letter-spacing:2px;
}

.hero-texto p{
max-width:600px;
margin:auto;
font-size:20px;
margin-top:20px;
}



/* INTRO */

.mirada-intro{
padding:120px 20px;
text-align:center;
}

.mirada-intro h2{
font-size:42px;
margin-bottom:20px;
}

.mirada-intro p{
max-width:700px;
margin:auto;
font-size:18px;
color:#666;
}



/* SERVICIOS */

.mirada-servicios{
padding:120px 20px;
text-align:center;
}

.mirada-servicios img{
width:100%;
border-radius:10px;
margin-bottom:20px;
}

.mirada-servicios h3{
font-size:26px;
margin-bottom:10px;
}

.mirada-servicios p{
color:#666;
}



/* SECCION VISUAL */

.scroll-anim{

opacity:0;
transform:translateY(60px);

transition:
opacity 1s ease,
transform 1s ease;

}

.scroll-anim.visible{

opacity:1;
transform:translateY(0);

}

.mirada-full{
height:70vh;
background:url("imagenes/makeup.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
}

.mirada-overlay h2{
color:white;
font-size:50px;
font-weight:300;
}



/* PROCESO */

.mirada-proceso{
padding:120px 20px;
text-align:center;
}

.numero{
font-size:40px;
font-weight:300;
color:#b88a6a;
}



/* CTA */

.mirada-cta{
padding:120px 20px;
text-align:center;
background:#f7f5f3;
}

.mirada-cta h2{
font-size:40px;
margin-bottom:30px;
}


/* HERO */

.hero-manicura{
height:55vh;
background:url("imagenes/manicura.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-manicura2{
height:55vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#4B2E2E;
}

.hero-texto h1{
font-size:70px;
font-weight:300;
letter-spacing:2px;
}

.hero-texto p{
font-size:20px;
margin-top:20px;
max-width:500px;
margin-left:auto;
margin-right:auto;
}



/* INTRO */

.manicura-intro{
padding:120px 20px;
text-align:center;
}

.manicura-intro h2{
font-size:42px;
margin-bottom:20px;
}

.manicura-intro p{
max-width:700px;
margin:auto;
color:#666;
font-size:18px;
}



/* SERVICIOS */

.manicura-servicios{
padding:120px 20px;
text-align:center;
}

.manicura-servicios img{
width:100%;
border-radius:10px;
margin-bottom:20px;
}

.manicura-servicios h3{
font-size:26px;
margin-bottom:10px;
}

.manicura-servicios p{
color:#666;
}



/* IMAGEN FULL */

.manicura-full{
height:70vh;
background:url("imagenes/evento.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
}

.manicura-overlay h2{
color:white;
font-size:50px;
font-weight:300;
}



/* PROCESO */

.manicura-proceso{
padding:120px 20px;
text-align:center;
}

.numero{
font-size:40px;
font-weight:300;
color:#b88a6a;
}



/* CTA */

.manicura-cta{
padding:120px 20px;
background:#f7f5f3;
text-align:center;
}

.manicura-cta h2{
font-size:40px;
margin-bottom:30px;
}



/* ANIMACIONES TIPO APPLE */

.scroll-anim{
opacity:0;
transform:translateY(60px);
transition:all 1s ease;
}

.scroll-anim.visible{
opacity:1;
transform:translateY(0);
}


/* HERO */

.hero-eventos{
height:65vh;
background:url("imagenes/evento.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-eventos h1{
font-size:70px;
font-weight:300;
letter-spacing:2px;
}

.hero-eventos p{
font-size:20px;
max-width:600px;
margin:auto;
margin-top:20px;
}



/* INTRO */

.eventos-intro{
padding:120px 20px;
text-align:center;
}

.eventos-intro h2{
font-size:42px;
margin-bottom:20px;
}

.eventos-intro p{
max-width:700px;
margin:auto;
font-size:18px;
color:#666;
}



/* SERVICIOS */

.eventos-servicios{
padding:120px 20px;
text-align:center;
}

.eventos-servicios img{
width:100%;
border-radius:10px;
margin-bottom:20px;
}

.eventos-servicios h3{
font-size:26px;
margin-bottom:10px;
}

.eventos-servicios p{
color:#666;
}



/* SECCION VISUAL */

.eventos-full{
height:70vh;
background:url("imagenes/makeup.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
}

.eventos-overlay h2{
color:white;
font-size:50px;
font-weight:300;
}



/* PROCESO */

.eventos-proceso{
padding:120px 20px;
text-align:center;
}

.numero{
font-size:40px;
font-weight:300;
color:#b88a6a;
}



/* CTA */

.eventos-cta{
padding:120px 20px;
background:#f7f5f3;
text-align:center;
}

.eventos-cta h2{
font-size:40px;
margin-bottom:30px;
}


/* HERO */

.hero-cursos{
height:60vh;
background:url("imagenes/cursos2.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-cursos h1{
font-size:70px;
font-weight:300;
letter-spacing:2px;
}

.hero-cursos p{
font-size:20px;
max-width:600px;
margin:auto;
margin-top:20px;
}



/* INTRO */

.cursos-intro{
padding:120px 20px;
text-align:center;
}

.cursos-intro h2{
font-size:42px;
margin-bottom:20px;
}

.cursos-intro p{
max-width:700px;
margin:auto;
font-size:18px;
color:#666;
}



/* SERVICIOS */

.cursos-servicios{
padding:120px 20px;
text-align:center;
}

.cursos-servicios img{
width:100%;
border-radius:10px;
margin-bottom:20px;
}

.cursos-servicios h3{
font-size:26px;
margin-bottom:10px;
}

.cursos-servicios p{
color:#666;
}



/* IMAGEN VISUAL */

.cursos-full{
height:70vh;
background:url("imagenes/novias2.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
}

.cursos-overlay h2{
color:white;
font-size:50px;
font-weight:300;
}



/* PROGRAMA */

.cursos-programa{
padding:120px 20px;
text-align:center;
}

.numero{
font-size:40px;
font-weight:300;
color:#b88a6a;
}



/* CTA */

.cursos-cta{
padding:120px 20px;
background:#f7f5f3;
text-align:center;
}

.cursos-cta h2{
font-size:40px;
margin-bottom:30px;
}



/* ---------------------- */
/* SECCIÓN SOBRE MÍ / EXPERIENCIA */
/* ---------------------- */
.sobre-mi-section {
    background-color: #fdf7f0; /* Fondo suave y cálido */
    padding: 80px 0;
}

.sobre-mi-mini {
    display: block;
    font-weight: 700;
    color: #a67c52; /* Marrón elegante */
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sobre-mi-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #3b2e2a; /* Marrón oscuro */
    margin-bottom: 20px;
    line-height: 1.2;
}

.sobre-mi-text {
    font-size: 1.1rem;
    color: #4a3d36;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Imagen de la sección */
.sobre-mi-section img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.sobre-mi-section img:hover {
    transform: scale(1.03);
}

/* Animaciones sutiles */
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.scroll-anim.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .sobre-mi-title {
        font-size: 2rem;
    }
    .sobre-mi-text {
        font-size: 1rem;
    }
}

/* ===== SCROLL SERVICIOS (MÓVIL) ===== */

.scroll-servicio .servicio-overlay {
  bottom: -100%;
  transition: bottom 0.6s ease;
}

/* Cuando aparece */
.scroll-servicio.visible .servicio-overlay {
  bottom: 0;
}

/* En escritorio sigue funcionando hover */
@media (hover: hover) {
  .servicio-item:hover .servicio-overlay {
    bottom: 0;
  }
}


.novias-texto-section {
  padding: 100px 20px;
  background: #fdf7f0;
}

.novias-frase {
  font-size: 1.4rem;
  font-family: "Georgia", serif;
  color: #3b2e2a;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
}

.novias-carta {
  font-size: 1.1rem;
  color: #5a4a42;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .novias-frase {
    font-size: 1.2rem;
  }

  .novias-carta {
    font-size: 1rem;
  }
}


.fotografo {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: "Georgia", serif;
  z-index: 2;
  opacity: 0.85;
}

/* Opcional: efecto elegante al hacer hover */
.card-novia:hover .fotografo {
  opacity: 1;
}