/*
Theme Name: Marcela Cotte Event Planner
Theme URI: https://marcelacotte.com
Author: Tu Nombre
Author URI: https://tudominio.com
Description: Tema elegante para planificadora de bodas con diseño sofisticado y editable desde WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marcela-cotte
*/

/* ===========================
   VARIABLES CSS
   =========================== */
:root {
  /* Updated color values to new palette */
  /* Colores editables desde el Customizer */
  --color-primary: #c2af8e;
  --color-secondary: #6e2c2e;
  --color-accent: #8c745c;
  --color-text: #4a4a4a;
  --color-background: #faf8f6;
  --color-white: #ffffff;

  /* Tipografía */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --font-script: "Great Vibes", cursive;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* ===========================
   TIPOGRAFÍA
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 3rem;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 2rem;
}

.script-text {
  font-family: var(--font-script);
  font-size: 2.5rem;
  font-weight: 400;
}

.uppercase-small {
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===========================
   LAYOUT PRINCIPAL
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-small {
  padding: 4rem 0;
}

/* ===========================
   HEADER Y NAVEGACIÓN
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
    max-width: 180px;
  z-index: 1001;
  position: relative;
}

.site-header.scrolled .site-logo {
  color: var(--color-text);
}

/* Desktop navigation styles */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.desktop-nav a {
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 400;
  transition: color 0.3s ease;
}

.site-header.scrolled .desktop-nav a {
  color: var(--color-text);
}

.desktop-nav a:hover {
  color: var(--color-accent);
}

/* Mobile menu toggle button with hamburger icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  position: relative; /* Ensuring proper positioning */
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  border-radius: 2px;
  position: absolute; /* Absolute positioning for proper animation */
  left: 0;
}

/* Positioning each line correctly */
.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 0;
}

.site-header.scrolled .hamburger-line {
  background-color: var(--color-text);
}

/* Improved hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-navigation ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.mobile-navigation li {
  margin: 2rem 0;
}

.mobile-navigation a {
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 400;
  transition: color 0.3s ease;
  display: block;
}

.mobile-navigation a:hover {
  color: var(--color-accent);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ===========================
   HERO CAROUSEL SECTION
   =========================== */
/* Rediseñando el Hero Carousel para pantalla completa con mejor diseño */
.hero-carousel-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hero-carousel-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-slide .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel-slide .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-carousel-slide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 2rem;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.hero-carousel-slide .hero-title {
  font-size: 6rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-carousel-slide .hero-subtitle {
  font-size: 1.125rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0.95;
}

/* Controles del Hero Carousel */
.hero-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 3;
  pointer-events: none;
}

.hero-carousel-btn {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  color: var(--color-white);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Dots del Hero Carousel */
.hero-carousel-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-white);
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===========================
   BOTONES
   =========================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 2px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--color-white);
  color: var(--color-text);
}

.btn-primary {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-secondary);
}

/* ===========================
   SECCIÓN BIENVENIDA
   =========================== */
.welcome-section {
  background: var(--color-white);
  position: relative;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.welcome-content h2 {
  margin-bottom: 1.5rem;
  font-size: 4rem;
  font-weight: 300;
}

.welcome-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.welcome-content .uppercase-small {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

/* Simplificando el layout de imágenes de bienvenida */
.welcome-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.welcome-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.welcome-images img:hover {
  transform: scale(1.02);
}

.welcome-video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  grid-column: 1 / -1;
}

/* ===========================
   CARRUSEL / GALERÍA DE FOTOS
   =========================== */
/* Modificando el carrusel para que avance foto por foto con animación fluida */
.carousel-section {
  background: var(--color-background);
  padding: 6rem 0;
}

.photo-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.photo-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  gap: 2rem;
}

.photo-carousel-item {
  width:400px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.photo-carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block; /* Removes bottom gap */
}

.photo-carousel-item:hover img {
  transform: scale(1.05);
}

/* Botón siguiente con diseño elegante */
.carousel-next-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
  padding-right: 2rem;
}

.carousel-next-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--color-text);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}

.carousel-next-btn:hover {
  color: var(--color-secondary);
  transform: translateX(10px);
}

.carousel-next-text {
  font-weight: 400;
}

.carousel-next-arrow {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.carousel-next-btn:hover .carousel-next-arrow {
  transform: translateX(5px);
}

/* ===========================
   GALERÍA DE PORTAFOLIO
   =========================== */
.portfolio-section {
  background: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .uppercase-small {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 2rem;
  color: var(--color-white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-link {
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===========================
   TESTIMONIALES
   =========================== */
.testimonials-section {
  background: var(--color-background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.testimonial-card {
  background: transparent;
  padding: 0;
  text-align: left;
  border-top: 1px solid var(--color-secondary);
  padding-top: 2rem;
}

.testimonial-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
  font-weight: 500;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.testimonial-text p {
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--color-text);
  margin: 0;
}

/* ===========================
   FORMULARIO DE CONTACTO
   =========================== */
.contact-section {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  background: var(--color-background);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===========================
   FOOTER
   =========================== */
/* Rediseñando el footer con el estilo minimalista de la imagen de referencia */
.site-footer {
  background: var(--color-primary);
  color: var(--color-text);
  padding: 5rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.footer-content::before,
.footer-content::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 200px;
  background: var(--color-text);
  opacity: 0.3;
  transform: translateY(-50%);
}

.footer-content::before {
  left: 33.33%;
}

.footer-content::after {
  right: 33.33%;
}

.footer-section {
  text-align: center;
}

.footer-nav .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav .footer-menu li {
  margin-bottom: 1rem;
}

.footer-nav .footer-menu a {
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-nav .footer-menu a:hover {
  color: var(--color-secondary);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.footer-social .social-links {
  display: flex;
  gap: 2rem;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
}

.footer-social .social-links a {
  color: var(--color-text);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social .social-links a:hover {
  color: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-social .social-links svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
}

/* ===========================
   GALERÍA INSTAGRAM
   =========================== */
/* Agregando estilos para la nueva sección de Instagram */
.instagram-section {
  background: var(--color-white);
  text-align: center;
}

.instagram-header {
  margin-bottom: 3rem;
}

.instagram-title {
  font-family: var(--font-script);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.instagram-handle {
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 500;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-icon {
  font-size: 2rem;
  color: var(--color-white);
}

/* Agregando estilos para la sección "Getting to Know" con collage */
.getting-to-know-section {
  background: #f5ebe0;
  padding: 6rem 0;
}

.getting-to-know-header {
  text-align: center;
  margin-bottom: 4rem;
}

.fun-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: #d4794c;
  margin-bottom: 0.5rem;
}

.getting-to-know-header .uppercase-small {
  color: var(--color-secondary);
  font-size: 0.875rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.collage-item {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.collage-image-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collage-item:hover .collage-image-item img {
  transform: scale(1.05);
}

.collage-text-item {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  background: var(--color-white);
}

.collage-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #d4794c;
  text-align: center;
  font-style: italic;
}

.collage-text strong {
  font-weight: 600;
  color: var(--color-text);
}

/* Estilos para la sección CTA "We'd love to hear from you" */
.cta-section {
  background: var(--color-background);
  padding: 8rem 0;
  text-align: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  color: var(--color-text);
}

.cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  letter-spacing: 3px;
}

.cta-link {
  color: #c9a882;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-link:hover {
  color: var(--color-secondary);
}

.cta-link-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-separator {
  color: #c9a882;
  font-size: 1rem;
}

/* ===========================
   ACCORDION SECTION (Offerings)
   =========================== */
.offerings-section {
  background: var(--color-background);
  padding: 6rem 0;
}

.accordion-container {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.accordion-item {
  border-top: 1px solid rgba(139, 115, 85, 0.3);
  border-bottom: 1px solid rgba(139, 115, 85, 0.3);
  margin-bottom: -1px;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 2rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-header:hover {
  opacity: 0.7;
}

.accordion-title {
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 500;
  text-align: center;
  font-family: var(--font-body);
  flex: 1;
}

.accordion-icon {
  font-size: 2rem;
  color: var(--color-secondary);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  position: absolute;
  right: 3rem;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content.active {
  max-height: 1000px;
  padding-bottom: 2rem;
}

.accordion-content-inner {
  padding: 0 3rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  text-align: center;
}

.accordion-content-inner p {
  margin-bottom: 0.5rem;
}

/* ===========================
   BLOG PAGE STYLES
   =========================== */
.blog-hero {
  text-align: center;
  padding: 8rem 0 4rem;
  background: var(--color-background);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.blog-post-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-post-content {
  padding: 2rem;
}

.blog-post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.blog-post-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.blog-post-excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.blog-post-link {
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 500;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

.pagination a,
.pagination span {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .welcome-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .welcome-images {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content::before,
  .footer-content::after {
    display: none;
  }

  /* Photo carousel optimized for mobile - shows 1 item at a time */
  .photo-carousel-item {
    min-width: 100%;
  }

  .photo-carousel-item img {
    height: 400px; /* Reduced height for mobile */
  }

  .carousel-next-container {
    padding-right: 1rem;
    margin-top: 2rem;
  }

  .carousel-next-btn {
    font-size: 1.5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collage-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .hero-carousel-slide .hero-title {
    font-size: 3rem;
  }

  .hero-carousel-controls {
    padding: 0 1rem;
  }

  .hero-carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  /* Making accordion responsive */
  .accordion-header {
    padding: 1.5rem 1rem;
  }

  .accordion-icon {
    right: 1rem;
  }

  .accordion-content-inner {
    padding: 0 1rem;
  }

  .accordion-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding-right: 2rem;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   WEDDING CAROUSEL PORTFOLIO (Rediseñado como Cards)
   =========================== */
/* Rediseñando el carrusel de bodas para mostrar cards más pequeñas */
.weddings-carousel-section {
  background: var(--color-white);
  padding: 6rem 0;
  overflow: hidden;
}

.weddings-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5rem;
}

.weddings-carousel-track-container {
  overflow: hidden;
  border-radius: 5px;
}

.weddings-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: fit-content;
}

/* Fixed wedding slide width with pixel-based dimensions for consistent sizing */
.wedding-carousel-slide {
  min-width: 300px; /* Fixed width for desktop */
  flex-shrink: 0;
}

.wedding-carousel-content {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wedding-carousel-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.wedding-image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: var(--color-background);
  flex-shrink: 0;
}

.wedding-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block; /* Removes bottom gap */
}

.wedding-carousel-content:hover .wedding-carousel-image {
  transform: scale(1.1);
}

.wedding-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 180px; /* Reduced from 220px */
}

.wedding-title {
  font-family: var(--font-heading);
  font-size: 1.75rem; /* Reduced from 2rem */
  font-weight: 300;
  margin: 0;
  color: var(--color-text);
  line-height: 1.2;
}

.wedding-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.8;
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Reduced from 3 lines */
  -webkit-box-orient: vertical;
}

.wedding-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--color-secondary);
  background: transparent;
  color: var(--color-secondary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
  align-self: flex-start;
  margin-top: auto;
}

.wedding-btn:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* Added styles for wedding carousel buttons */
.wedding-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wedding-carousel-btn:hover {
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.wedding-carousel-prev {
  left: 1rem;
}

.wedding-carousel-next {
  right: 1rem;
}

/* Added styles for wedding carousel dots */
.wedding-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.wedding-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-text);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.wedding-dot.active {
  background: var(--color-text);
}

.wedding-dot:hover {
  transform: scale(1.2);
}

/* Wedding carousel mobile styles */
@media (max-width: 768px) {
  .weddings-carousel-wrapper {
    padding: 0 1rem; /* Reduced padding for mobile */
  }

  .wedding-carousel-slide {
    min-width: 300px; /* Full width on mobile */
  }

  .wedding-image-container {
    height: 280px; /* Smaller height for mobile screens */
    width: 300px;
  }

  .wedding-info {
    padding: 1.25rem;
    min-height: 160px; /* Reduced min height */
  }

  .wedding-title {
    font-size: 1.5rem;
  }

  .wedding-description {
    font-size: 0.875rem;
    -webkit-line-clamp: 2;
  }

  .wedding-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.6875rem;
  }

  .wedding-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .wedding-carousel-prev {
    left: 0.5rem;
  }

  .wedding-carousel-next {
    right: 0.5rem;
  }
}


/* ===========================
   WEDDING GALLERY WITH SUBTLE SPACING
   =========================== */
.wedding-gallery-section {
  background: var(--color-white);
  padding: 2rem 0; /* Pequeño padding vertical */
  margin-top: 0;
}

.wedding-gallery-section .container-wide {
  max-width: 100%;
  padding: 0 1rem; /* Pequeño padding horizontal */
}

.wedding-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem; /* Espaciado mínimo entre imágenes */
  margin-bottom: 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: none;
  box-shadow: none;
}

.gallery-item img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Layout dinámico */
.gallery-item:nth-child(3n + 1) {
  grid-column: span 2;
}

.gallery-item:nth-child(3n + 1) img {
  height: 90vh;
}

/* Intro más compacto */
.gallery-intro {
  text-align: center;
  max-width: 800px;
  margin: 1rem auto 2rem; /* Menos margen */
  padding: 0 1rem;
}

.gallery-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Botón de volver */
.gallery-back {
  text-align: center;
  margin: 2rem 0;
  padding: 0 1rem;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .wedding-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.25rem; /* Espaciado aún más pequeño en móviles */
  }

  .gallery-item:nth-child(3n + 1) {
    grid-column: span 1;
  }

  .gallery-item img,
  .gallery-item:nth-child(3n + 1) img {
    height: 40vh;
  }

  .wedding-gallery-section {
    padding: 1rem 0; /* Menos padding en móviles */
  }

  .wedding-gallery-section .container-wide {
    padding: 0 0.5rem; /* Menos padding horizontal en móviles */
  }
}

/* ===========================
   LIGHTBOX MODAL
   =========================== */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-counter {
  position: absolute;
  bottom: -3rem;
  color: white;
  font-size: 1.125rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  /* Responsive para tablets */
  .wedding-carousel-slide {
    min-width: calc((100% - 2rem) / 2);
  }

  .meet-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .meet-image {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Ajustes para móviles */
  .wedding-carousel-slide {
    min-width: 100%;
  }

  .weddings-carousel-wrapper {
    padding: 0 3rem;
  }

  .wedding-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(3n + 1) {
    grid-column: span 1;
  }

  h1 {
    font-size: 3rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}
/* Estilos para el banner de contacto */
.blog-hero-premium {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.hero-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content-premium {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title-premium {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.hero-subtitle-premium {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
}

/* Estilos generales para la página de contacto */
.contact {
  padding: 40px 0 60px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.section-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #777;
}

.contact-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Estilos para los elementos de contacto */
.contact-details {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  font-size: 1.3rem;
  color: #777;
  margin-right: 15px;
  width: 25px;
  text-align: center;
  margin-top: 3px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #444;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Redes sociales */
.social-media {
  margin-top: 40px;
}

.social-media h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #444;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #ddd;
  color: #333;
}

/* Formulario de contacto */
.contact-form-container {
  background: white;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 500px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #999;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #555;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  align-self: flex-end;
  margin-top: auto;
}

.contact-form button:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title-premium {
    font-size: 2.5rem;
  }

  .hero-subtitle-premium {
    font-size: 1rem;
  }
}
/* ==============================================
   Blog Premium - Estilos Mejorados
   ============================================== */

/* Hero Section Mejorada */
.blog-hero-premium {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.hero-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content-premium {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title-premium {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.hero-subtitle-premium {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

/* Main Grid Layout */
.blog-main-premium {
  padding: 60px 0;
}

.blog-grid-premium {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}

/* Blog Posts */
.blog-posts-premium {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Filtros */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.blog-filters span {
  font-weight: 600;
  color: #8b6b4a;
}

.filter-link {
  padding: 8px 15px;
  background: #f5f5f5;
  border-radius: 5px;
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-link:hover,
.filter-link.active {
  background: #d2b48c;
  color: white;
}

/* Post Card Premium - Vertical Layout */
.blog-post-card-premium {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-post-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.post-thumbnail-premium {
  position: relative;
  overflow: hidden;
  height: 350px;
  width: 100%;
}

.post-featured-image-premium {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-card-premium:hover .post-featured-image-premium {
  transform: scale(1.05);
}

.post-category-premium {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d2b48c;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.post-content-premium {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta-premium {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #777;
}

.post-meta-premium i {
  margin-right: 5px;
  color: #d2b48c;
}

.post-title-premium {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.3;
  flex: 1;
}

.post-title-premium a {
  color: #8b6b4a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title-premium a:hover {
  color: #d2b48c;
}

.post-excerpt-premium {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.read-more-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d2b48c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more-premium:hover {
  color: #8b6b4a;
  gap: 12px;
}

/* Posts Grid - Single column layout */
.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
}

/* Pagination Mejorada */
.blog-pagination-premium {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.blog-pagination-premium .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 5px;
  padding: 0 15px;
  border-radius: 5px;
  background: #f5f5f5;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-pagination-premium .page-numbers.current,
.blog-pagination-premium .page-numbers:hover {
  background: #d2b48c;
  color: white;
}

/* Sidebar Premium */
.blog-sidebar-premium {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 30px;
}

.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.widget-title-premium {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #8b6b4a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title-premium i {
  color: #d2b48c;
}

/* Categories Widget Premium */
.categories-list-premium {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item-premium {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.category-link-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-link-premium:hover {
  color: #d2b48c;
}

.category-link-premium i {
  color: #d2b48c;
}

/* Popular Posts Widget Premium */
.popular-posts-premium {
  display: grid;
  gap: 20px;
}

.popular-post-premium {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.popular-post-thumbnail-premium {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 5px;
  overflow: hidden;
}

.popular-post-thumbnail-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post-content-premium {
  flex: 1;
}

.popular-post-title-premium {
  font-size: 0.95rem;
  margin-bottom: 5px;
  line-height: 1.3;
}

.popular-post-title-premium a {
  color: #8b6b4a;
  text-decoration: none;
}

.popular-post-meta-premium {
  font-size: 0.8rem;
  color: #777;
}

/* Estilos para la sección de eventos */
.featured-events-section {
  background: #f9f9f9;
  padding: 60px 0;
  margin-bottom: 60px;
}

.featured-events-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.featured-events-section .section-title {
  font-size: 2rem;
  color: #8b6b4a;
  margin: 0;
}

.view-all-link {
  color: #d2b48c;
  text-decoration: none;
  font-weight: 600;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d2b48c;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  line-height: 1;
}

.event-date-badge .day {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.event-date-badge .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  display: block;
}

.event-content {
  padding: 20px;
}

.event-title {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
}

.event-title a {
  color: #8b6b4a;
  text-decoration: none;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.event-meta i {
  margin-right: 5px;
  color: #d2b48c;
}

.event-button {
  display: inline-block;
  padding: 10px 20px;
  background: #d2b48c;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

/* ==============================================
       Modal Styles - FIXED
       ============================================== */
.blog-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.blog-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.blog-modal-container {
  background: white;
  border-radius: 15px;
  max-width: 900px;
  max-height: 90vh;
  width: 100%;
  overflow: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.blog-modal-header {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.blog-modal-close {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-modal-close:hover {
  background: white;
  transform: scale(1.1);
}

.blog-modal-content {
  height: 100%;
  overflow-y: auto;
}

.blog-modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #666;
  text-align: center;
}

.blog-modal-body {
  display: none;
}

.blog-modal-body.loaded {
  display: block;
}

/* Modal Post Content */
.modal-post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.modal-post-content {
  padding: 40px;
}

.modal-post-category {
  display: inline-block;
  background: #d2b48c;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.modal-post-title {
  font-size: 2.5rem;
  color: #8b6b4a;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

.modal-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}

.modal-post-meta i {
  margin-right: 8px;
  color: #d2b48c;
}

.modal-post-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.modal-post-text p {
  margin-bottom: 20px;
}

.modal-post-text h2,
.modal-post-text h3,
.modal-post-text h4 {
  color: #8b6b4a;
  margin: 30px 0 15px 0;
}

.modal-post-text img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.modal-post-text ul,
.modal-post-text ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.modal-post-text li {
  margin-bottom: 8px;
}

.modal-post-text blockquote {
  background: #f9f9f9;
  border-left: 4px solid #d2b48c;
  padding: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #666;
}

/* Scrollbar personalizado para el modal */
.blog-modal-content::-webkit-scrollbar {
  width: 8px;
}

.blog-modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.blog-modal-content::-webkit-scrollbar-thumb {
  background: #d2b48c;
  border-radius: 4px;
}

.blog-modal-content::-webkit-scrollbar-thumb:hover {
  background: #8b6b4a;
}

/* Prevenir scroll del body cuando el modal está abierto */
body.modal-open {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-grid-premium {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-sidebar-premium {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .posts-grid {
    max-width: 100%;
  }

  .blog-post-card-premium .post-thumbnail-premium {
    height: 250px;
  }

  .blog-post-card-premium .post-content-premium {
    padding: 25px;
  }

  .blog-post-card-premium .post-title-premium {
    font-size: 1.6rem;
  }

  /* Modal Responsive */
  .blog-modal-container {
    max-height: 95vh;
    margin: 10px;
  }

  .modal-post-image {
    height: 250px;
  }

  .modal-post-content {
    padding: 25px;
  }

  .modal-post-title {
    font-size: 2rem;
  }

  .modal-post-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .blog-post-card-premium .post-thumbnail-premium {
    height: 220px;
  }

  .blog-post-card-premium .post-content-premium {
    padding: 20px;
  }

  .blog-post-card-premium .post-title-premium {
    font-size: 1.4rem;
  }

  .modal-post-content {
    padding: 20px;
  }

  .modal-post-title {
    font-size: 1.6rem;
  }
}

/* Animaciones */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===========================
   MEET SECTION
   =========================== */
.meet-section {
  background: var(--color-white);
  padding: 6rem 0;
}

.meet-content {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.meet-image {
  width: 100%;
  height: 680px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  grid-column: 1;
}

.meet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.meet-text {
  padding-top: 2rem;
  grid-column: 2;
}

.meet-label {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.meet-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: var(--color-text);
  line-height: 1.1;
}

.meet-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.meet-description p {
  margin-bottom: 1.5rem;
}

.meet-description p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .meet-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .meet-image {
    grid-column: 1;
    height: 500px;
    max-width: 400px;
    margin: 0 auto;
  }

  .meet-text {
    grid-column: 1;
    text-align: center;
    padding-top: 0;
  }

  .meet-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .meet-section {
    padding: 4rem 0;
  }

  .meet-image {
    height: 400px;
    max-width: 300px;
  }

  .meet-title {
    font-size: 2.5rem;
  }
}

/* ===========================
   TESTIMONIALES CON FOTOS (Para Experiences)
   =========================== */
.testimonials-with-photos-section {
  background: var(--color-white);
  padding: 6rem 0;
}

.testimonials-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-photo-card {
  background: var(--color-background);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-photo-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-author-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial-author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-author-section .testimonial-author {
  margin: 0;
  font-size: 1.75rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-carousel-slide .hero-title {
    font-size: 4rem;
  }

  .welcome-grid {
    gap: 4rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    gap: 3rem;
  }

  .testimonials-photo-grid {
    gap: 3rem;
  }

  .contact-grid {
    gap: 3rem;
  }

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Tablet - Photo Carousel shows 2 items */
  .photo-carousel-item {
    min-width: calc(50% - 1rem);
  }

  .photo-carousel-item img {
    height: 500px;
  }

  /* Weddings carousel for tablet */
  .wedding-carousel-slide {
    min-width: calc(50% - 1rem);
  }

  .wedding-carousel-image {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-carousel-slide .hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-carousel-slide .hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 3px;
  }

  .section {
    padding: 4rem 0;
  }

  /* Header */
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Welcome Section */
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .welcome-images {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Photo Carousel - Shows 1 full width item on mobile */
  .photo-carousel-item {
    min-width: 100%;
  }

  .photo-carousel-item img {
    height: 400px;
  }

  .carousel-next-container {
    justify-content: center;
    padding-right: 0;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonials-photo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonial-photo-card {
    padding: 2rem;
  }

  .testimonial-author-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content::before,
  .footer-content::after {
    display: none;
  }

  /* Instagram */
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Collage */
  .collage-grid {
    grid-template-columns: 1fr;
  }

  /* Hero Carousel Controls */
  .hero-carousel-controls {
    padding: 0 1rem;
  }

  .hero-carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .hero-carousel-dots {
    bottom: 2rem;
  }

  /* Weddings Carousel - Mobile shows 1 card at a time */
  .wedding-carousel-slide {
    min-width: 100%;
  }

  .wedding-carousel-image {
    height: 280px;
  }

  .wedding-info {
    min-height: 180px;
  }

  .wedding-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  /* CTA Section */
  .cta-links {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-separator {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-carousel-slide .hero-title {
    font-size: 2rem;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-author-photo {
    width: 60px;
    height: 60px;
  }
}
/* ===========================
   LOGOS DUALES (blanco / negro según scroll)
   =========================== */
.site-logo {
  max-width: none; /* anula el max-width: 180px del CSS original */
}
.site-logo a {
  display: inline-block;
  line-height: 0;
}
.site-logo .logo-img {
  display: block;
  height: 100px;         /* arriba del hero */
  width: auto;
  max-width: none;
  transition: height 0.3s ease;
}
.site-header.scrolled .site-logo .logo-img {
  height: 80px;          /* después del scroll */
}

/* Estado inicial (header transparente sobre el hero): logo BLANCO */
.site-logo .logo-white { display: block; }
.site-logo .logo-black { display: none; }

/* Header con scroll (fondo blanco): logo NEGRO */
.site-header.scrolled .site-logo .logo-white { display: none; }
.site-header.scrolled .site-logo .logo-black { display: block; }
/* ====================================================
   CAMBIOS WEB MARCELA COTTE — Abril 2026
   (estilos consolidados desde los archivos PHP)
   ==================================================== */

/* === Bloque introductorio después del Hero (front-page) === */
.hero-intro-section {
    background-color: var(--color-white);
    padding: 8rem 0;
    text-align: center;
}
.hero-intro-text {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    line-height: 1.4;
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: 0.5px;
    max-width: 950px;
    margin: 0 auto;
}
.hero-intro-text .hero-intro-highlight {
    font-style: italic;
    color: var(--color-accent);
    font-weight: 400;
}
@media (max-width: 1024px) {
    .hero-intro-section { padding: 6rem 0; }
    .hero-intro-text { font-size: 2.25rem; }
}
@media (max-width: 768px) {
    .hero-intro-section { padding: 4rem 0; }
    .hero-intro-text { font-size: 1.6rem; line-height: 1.5; }
}

/* === CTA: Agenda tu llamada (todas las páginas) === */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.cta-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0 auto 40px;
    font-weight: 300;
    max-width: 620px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-btn {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    gap: 10px;
}
.cta-btn-primary {
    background-color: #c6ae92;
    color: white;
    border: 2px solid #c6ae92;
}
.cta-btn-primary:hover {
    background-color: #b39a7e;
    border-color: #b39a7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 174, 146, 0.3);
}
.cta-btn-outline {
    background-color: transparent;
    color: #333;
    border: 2px solid #c6ae92;
}
.cta-btn-outline:hover {
    background-color: #c6ae92;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 174, 146, 0.3);
}
.cta-btn-whatsapp {
    background-color: transparent;
    color: #333;
    border: 2px solid #c6ae92;
}
.cta-btn-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: #25D366;
    transition: fill 0.3s ease;
    flex-shrink: 0;
}
.cta-btn-whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.cta-btn-whatsapp:hover svg {
    fill: white;
}
.btn-arrow {
    transition: transform 0.3s ease;
}
.cta-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}
.cta-note {
    margin-top: 32px;
    font-style: italic;
    font-size: 0.95rem;
    color: #888;
    letter-spacing: 0.3px;
}
@media (max-width: 768px) {
    .cta-title { font-size: 2.1rem; }
    .cta-subtitle { font-size: 1rem; }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* === Sección Instagram (todas las páginas) === */
.instagram-section {
    text-align: center;
    padding: 60px 0;
    background-color: #fafafa;
}
.instagram-header {
    margin-bottom: 40px;
}
.instagram-title {
    font-family: 'Great Vibes', cursive, serif;
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}
.instagram-handle {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}
/* Plugin Smash Balloon — forzar layout */
.instagram-section #sb_instagram {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}
.instagram-section #sb_instagram #sbi_images {
    padding: 0 !important;
}
.instagram-section .sbi_item {
    padding: 10px !important;
}
.instagram-section .sbi_photo_wrap {
    border-radius: 0 !important;
    overflow: hidden !important;
}
.instagram-section .sbi_photo_wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.instagram-section #sbi_load,
.instagram-section .sbi_follow_btn {
    margin: 10px auto !important;
    display: block !important;
    text-align: center !important;
}
.instagram-section .sbi_follow_btn a {
    margin: 0 auto !important;
}
/* === Punto 5: ocultar mensaje "Por favor, activa JavaScript" de WPForms === */
.wpforms-error-noscript,
.wpforms-init-loading-noscript,
noscript .wpforms-form,
.wpforms-form noscript {
    display: none !important;
}
/* Si JS está realmente desactivado, se muestra un fallback amable */
.no-js-fallback {
    display: none;
    background: #fff8e1;
    border-left: 4px solid #c6ae92;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
}
/* HTML <noscript> nativo se muestra solo cuando JS está off */

/* === Punto 9: Cierre de la galería del portafolio === */
.gallery-cta {
    text-align: center;
    padding: 5rem 1rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.gallery-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.gallery-cta-link {
    font-family: var(--font-script);
    font-size: 2.75rem;
    color: var(--color-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.gallery-cta-link:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .gallery-cta { padding: 3rem 1rem 1rem; }
    .gallery-cta-title { font-size: 1.75rem; }
    .gallery-cta-link { font-size: 2.25rem; }
}

/* === Punto 12: Cierre del post del blog === */
.post-end-cta {
    text-align: center;
    padding: 4rem 1rem;
    margin: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.post-end-question {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.post-end-link {
    font-family: var(--font-script);
    font-size: 2.25rem;
    color: var(--color-secondary);
    transition: color 0.3s ease;
    display: inline-block;
}
.post-end-link:hover {
    color: var(--color-accent);
}
@media (max-width: 768px) {
    .post-end-cta { padding: 2.5rem 1rem; margin: 2rem 0 1rem; }
    .post-end-question { font-size: 1.5rem; }
    .post-end-link { font-size: 1.75rem; }
}