/* ========================================
   REFORMAS VESKO - Estilos Modernos
   ======================================== */

:root {
  --primary: #181818;
  --secondary: #ff6a00;
  --accent: #8b7355;
  --light: #f5f6f8;
  --gray: #5f6470;
  --gray-light: #e7e8eb;
  --white: #fff;
  --shadow: 0 14px 40px rgba(14, 20, 36, 0.08);
  --shadow-hover: 0 20px 60px rgba(14, 20, 36, 0.14);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  line-height: 1.7;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

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

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  color: var(--secondary);
  font-size: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.header.scrolled .nav-link {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-cta {
  padding: 12px 28px;
  background: rgba(255,102,0,0.9);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid rgba(255,102,0,0.9);
  cursor: pointer;
}

.btn-cta:hover {
  background: black;
  border-color: #ff8533;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.btn-cta:visited,
.btn-cta:focus,
.btn-cta:active {
  color: var(--white);
}

.header.scrolled .btn-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.header.scrolled .btn-cta:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 50px;
  height: 50px;
  position: relative;
  overflow: visible;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 24px;
}

.menu-toggle span:nth-child(3) {
  top: 32px;
}

.header.scrolled .menu-toggle span {
  background: var(--primary);
}

/* Animación del menú hamburguesa a cruz */
.menu-toggle.active span:nth-child(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding-top: 110px;
  padding-bottom: 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 15, 28, 0.72), rgba(10, 15, 28, 0.46)),
    url('alco.webp') center/cover;
}

.hero-particles {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 30px 70px;
}

.hero-badge {
  display: inline-block;
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ffd0b0;
  margin-bottom: 30px;
  letter-spacing: 0.4px;
}

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--secondary);
}

.hero-image {
  display: none;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.93;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto 36px;
}

.hero-rating-stars {
  color: #ffb54d;
  letter-spacing: 2px;
  font-size: 14px;
}

.hero-rating-text {
  opacity: 0.9;
}

.hero-subtitle strong {
  color: #ffd7bd;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  padding: 16px 36px;
  background: var(--secondary);
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--secondary);
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: black;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,102,0,0.4);
  border-color: #ff8533;
}

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 26px;
}

.stat.stat-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat.stat-text .stat-label {
  font-size: 13px;
  opacity: 0.85;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary);
}

.stat-label {
  font-size: 14px;
  opacity: 0.7;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.22);
  padding: 8px 14px;
  border-radius: 999px;
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  opacity: 0.6;
}

.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(45deg);
  animation: scrollArrowBounce 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.45));
}

@keyframes scrollArrowBounce {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
    opacity: 1;
  }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 500px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  display: block;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--secondary);
  opacity: 0.2;
  border-radius: 10px;
  z-index: -1;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.exp-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary);
}

.exp-text {
  font-size: 14px;
  line-height: 1.4;
}

.about-content {
  padding: 40px 0;
}

.about-features {
  list-style: none;
  margin: 30px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-light);
  font-weight: 500;
  color: var(--primary);
}

.about-features li:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

.btn-text:hover {
  color: var(--secondary);
  gap: 15px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(8, 15, 40, 0.06);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.service-img {
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-content p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 20px;
}

.service-link {
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

/* ========================================
   WORK / GALLERY
   ======================================== */
.work {
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-wide-big {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item-wide-double {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 106, 0, 0.16) 0%, rgba(7, 10, 20, 0.8) 78%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  backdrop-filter: blur(3px);
}

.gallery-title {
  display: block;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.gallery-cat {
  font-size: 13px;
  color: var(--secondary);
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

/* ========================================
   TESTIMONIALS - CAROUSEL
   ======================================== */
.testimonials {
  background: var(--primary);
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.testimonials .section-tag,
.testimonials .section-title {
  color: var(--white);
}

.google-text {
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: #4285F4;
  font-weight: 600;
}

.carousel-wrapper {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 62px;
  overflow-x: clip;
}

.carousel-container {
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s ease;
  padding: 6px 0;
}

.carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  animation: none;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-item:hover {
  transform: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--secondary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
  background: #fff4ec;
  border-color: rgba(255, 102, 0, 0.35);
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.dot.active {
  background: var(--secondary);
  width: 22px;
  border-radius: 999px;
}

.dot:hover {
  background: rgba(255, 102, 0, 0.6);
}

.testimonial-card {
  text-align: left;
  padding: 32px 30px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card::before {
  content: none;
}

.testimonial-card:hover::before {
  opacity: 0;
}

.testimonial-card:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-stars {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  font-size: 16px;
  color: var(--secondary);
  text-shadow: none;
}

.star {
  display: inline-block;
  transition: none;
  animation: none;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.1s; }
.star:nth-child(3) { animation-delay: 0.2s; }
.star:nth-child(4) { animation-delay: 0.3s; }
.star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.testimonial-card:hover .star {
  animation: none;
}

@keyframes starBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3) rotateZ(10deg); }
}

.quote-icon {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: var(--secondary);
  line-height: 0.9;
  opacity: 0.25;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  font-style: normal;
  line-height: 1.7;
  display: block;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--secondary), #ff8533);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.author-name {
  display: block;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 15px;
}

.author-source {
  font-size: 12px;
  color: #777;
  font-weight: 500;
}


/* ========================================
   CONTACT
   ======================================== */
.contact {
  background: var(--light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-hours-card{
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);

  padding: 20px;

  position: relative;
  overflow: hidden;
}

.border-light{
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;
}

.border-path{
  fill: none;
  stroke: #ff6a00;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 6px rgba(255, 106, 0, 0.95))
    drop-shadow(0 0 14px rgba(255, 106, 0, 0.78))
    drop-shadow(0 0 26px rgba(255, 106, 0, 0.55));
  /* Segmento unico brillante con cola suave */
  stroke-dasharray: 150 1046;
  animation: borderRun 4s linear infinite;
}

@keyframes borderRun{
  from{
    stroke-dashoffset: 0;
  }

  to{
    stroke-dashoffset: -1196;
  }
}

.contact-hours-card h3,
.contact-hours-card p{
  position: relative;
  z-index: 2;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.contact-method:hover {
  transform: translateX(10px);
  border-left-color: var(--secondary);
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.method-label {
  display: block;
  font-size: 13px;
  color: var(--gray);
}

.method-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: #25D366;
  color: var(--white);
  border-radius: 10px;
  font-weight: 500;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-3px);
}

.whatsapp-icon {
  font-size: 20px;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 15, 40, 0.06);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
  color: var(--primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 102, 0, 0.02);
}

.form-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: calc(100% - 40px);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  font-size: 15px;
  color: var(--gray);
  pointer-events: none;
  transition: var(--transition);
  background: var(--white);
  padding: 0 5px;
  font-weight: 500;
}

.form-group textarea ~ label {
  top: 20px;
  transform: none;
}

.form-group textarea {
  resize: none;
  padding-bottom: 42px;
}

.char-counter {
  position: static;
  margin-top: 8px;
  text-align: right;
  font-size: 12px;
  color: var(--gray);
  background: transparent;
  padding: 0 2px;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
  top: 0;
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
}

.form-group select {
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-submit:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-whatsapp {
  width: 100%;
  padding: 18px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.contact-map {
  grid-column: 1 / -1;
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 15, 40, 0.06);
}

.contact-map h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .contact-map {
    padding: 24px;
  }

  .contact-map h3 {
    font-size: 20px;
  }

  .map-embed {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .contact-map {
    padding: 18px;
  }

  .map-embed {
    min-height: 200px;
    aspect-ratio: 1 / 1;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(180deg, #171717 0%, #101010 100%);
  color: var(--white);
  padding: 72px 0 28px;
  border-top: 4px solid var(--secondary);
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 30px;
}

.footer-brand .logo img {
  height: 46px;
}

.footer-brand p {
  opacity: 0.84;
  max-width: 680px;
  line-height: 1.65;
  font-size: 15px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  background: var(--secondary);
  border: 2px solid var(--secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.footer-cta:hover {
  background: transparent;
  color: var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 30px;
}

.footer-column {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
}

.footer-column h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--secondary);
  letter-spacing: 0.2px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.footer-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-contact-link {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-size: 14px;
}

.footer-whatsapp-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.footer-contact-link:hover .footer-whatsapp-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 0 6px rgba(255, 102, 0, 0.45));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 13px;
  margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about .container,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .gallery-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item-wide,
  .gallery-item-wide-big,
  .gallery-item-wide-double {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 2;
  }

  .gallery-item-medium {
    grid-column: span 1;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .carousel-item {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
  }

  .carousel-wrapper {
    padding: 20px 50px;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .btn-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .hero-content {
    padding: 0 30px 46px;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-trust {
    gap: 10px;
  }

  .hero-trust span {
    font-size: 12px;
    padding: 7px 11px;
  }

  .stat-number {
    font-size: 32px;
  }

  .about-experience {
    right: 10px;
    bottom: 10px;
    padding: 20px;
  }

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

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

  .gallery-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }

  .gallery-item-wide,
  .gallery-item-wide-big,
  .gallery-item-wide-double {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-item-medium {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand p {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-contact-link {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 30px;
  }

  .form-group label {
    font-size: 14px;
    max-width: calc(100% - 32px);
  }

  .logo img {
    height: 40px;
  }

  .hero-image {
    max-width: 200px;
  }

  .carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .carousel-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "container container"
      "prev next";
    gap: 14px 12px;
    padding: 20px 0 0;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    position: static;
    top: auto;
    transform: none;
  }

  .carousel-prev {
    grid-area: prev;
    justify-self: end;
  }

  .carousel-next {
    grid-area: next;
    justify-self: start;
  }

  .carousel-btn:hover {
    transform: scale(1.04);
  }

  .carousel-container {
    grid-area: container;
  }

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

  .google-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .testimonial-card {
    padding: 30px 25px;
    min-height: 320px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-column {
    padding: 16px;
  }

  .footer-bottom {
    padding-top: 16px;
  }
}


/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.whatsapp img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp:hover img {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.project-shot img,
.general-gallery-grid img,
.gallery-item img {
  cursor: zoom-in;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  touch-action: none;
  overscroll-behavior: none;
}

.image-viewer.active {
  display: block;
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.9);
  backdrop-filter: blur(4px);
}

.image-viewer-panel {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.image-viewer-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.image-viewer-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.image-viewer-btn.close {
  font-size: 20px;
  line-height: 1;
  padding: 6px 12px;
}

.image-viewer-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 80px 30px 30px;
  z-index: 1;
  overflow: hidden;
  touch-action: none;
}

.image-viewer-img {
  max-width: min(1200px, 92vw);
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  transform-origin: center center;
  transition: transform 0.12s ease;
  will-change: transform;
  touch-action: none;
}

/* ========================================
   REVIEW FORM - Estilos Premium
   ======================================== */

.testimonials-review-divider {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 102, 0, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    transparent 100%);
  margin: 80px 0 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-section-wrapper {
  text-align: center;
  margin-top: 100px;
  animation: fadeInUp 0.8s ease-out;
}

.review-section-title {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.review-section-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

#reviewForm {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 26px 28px;
  margin-top: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

#reviewForm:hover {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 102, 0, 0.18);
  box-shadow:
    0 16px 36px rgba(255, 102, 0, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

#reviewForm > input,
#reviewForm > select,
#reviewForm > textarea {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Input de nombre */
#review-name {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.2px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.05),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

#review-name::placeholder {
  color: rgba(95, 100, 112, 0.5);
  font-weight: 400;
}

#review-name:focus {
  outline: none;
  background: var(--white);
  border-color: var(--secondary);
  box-shadow:
    0 8px 25px rgba(255, 102, 0, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Rating de estrellas */
.rating-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 12px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.rating-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  text-align: center;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-direction: row-reverse;
}

.rating-stars input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-stars label {
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 6px;
  border-radius: 10px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color: #ffc26b;
}

.rating-stars input:checked ~ label {
  color: #ffb54d;
  text-shadow: 0 2px 8px rgba(255, 106, 0, 0.35);
}

.rating-stars label:active {
  transform: scale(0.92);
}

.rating-stars input:focus-visible + label {
  outline: 2px solid rgba(255, 106, 0, 0.6);
  outline-offset: 2px;
}

.rating-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-top: 8px;
}

/* Textarea de comentario */
#review-comment {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--primary);
  resize: none;
  min-height: 140px;
  font-family: inherit;
  line-height: 1.6;
  letter-spacing: 0.3px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.05),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

#review-comment::placeholder {
  color: rgba(95, 100, 112, 0.5);
  font-weight: 400;
}

#review-comment:focus {
  outline: none;
  background: var(--white);
  border-color: var(--secondary);
  box-shadow:
    0 8px 25px rgba(255, 102, 0, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

#review-comment::-webkit-scrollbar {
  width: 6px;
}

#review-comment::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

#review-comment::-webkit-scrollbar-thumb {
  background: rgba(255, 102, 0, 0.4);
  border-radius: 10px;
}

#review-comment::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 102, 0, 0.6);
}

/* Contador de caracteres */
#reviewCounter {
  text-align: right;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  margin-top: -8px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}

#reviewCounter.warning {
  color: #fbbf24;
  font-weight: 600;
}

#reviewCounter.error {
  color: #f87171;
  font-weight: 700;
}

#review-comment:focus ~ #reviewCounter {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .rating-stars label {
    font-size: 26px;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .rating-block {
    padding: 14px 12px;
  }

  .rating-stars {
    gap: 6px;
  }

  .rating-stars label {
    font-size: 22px;
    padding: 4px;
  }
}
#reviewForm > button {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--secondary) 0%, #ff7f1a 50%, #ff8533 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 30px rgba(255, 102, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

#reviewForm > button::before {
  content: none;
}

#reviewForm > button:hover::before {
  left: auto;
}

#reviewForm > button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 48px rgba(255, 102, 0, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, #ff7a1a 0%, #ff8f3a 50%, #ffb067 100%);
}

#reviewForm > button:active {
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(255, 102, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

#reviewForm > button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Mensaje de estado */
#reviewMessage {
  padding: 20px 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: none;
  animation: messageSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(15px);
  letter-spacing: 0.3px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  line-height: 1.6;
}

#reviewMessage::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent);
  animation: messageShine 2s ease-in-out infinite;
}

#reviewMessage.success {
  display: block;
  background: linear-gradient(135deg,
    rgba(34, 197, 94, 0.2) 0%,
    rgba(34, 197, 94, 0.1) 100%);
  border: 2px solid rgba(34, 197, 94, 0.5);
  color: #10b981;
  box-shadow:
    0 12px 35px rgba(34, 197, 94, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(34, 197, 94, 0.15);
  animation: messageSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
             messagePulseGreen 2s ease-in-out infinite;
}

#reviewMessage.error {
  display: block;
  background: linear-gradient(135deg,
    rgba(239, 68, 68, 0.2) 0%,
    rgba(239, 68, 68, 0.1) 100%);
  border: 2px solid rgba(239, 68, 68, 0.5);
  color: #ef4444;
  box-shadow:
    0 12px 35px rgba(239, 68, 68, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(239, 68, 68, 0.15);
  animation: messageSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
             messagePulseRed 2s ease-in-out infinite;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes messageShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes messagePulseGreen {
  0%, 100% {
    box-shadow:
      0 12px 35px rgba(34, 197, 94, 0.25),
      inset 0 1px 2px rgba(255, 255, 255, 0.3),
      0 0 20px rgba(34, 197, 94, 0.15);
  }
  50% {
    box-shadow:
      0 12px 35px rgba(34, 197, 94, 0.35),
      inset 0 1px 2px rgba(255, 255, 255, 0.3),
      0 0 30px rgba(34, 197, 94, 0.35);
  }
}

@keyframes messagePulseRed {
  0%, 100% {
    box-shadow:
      0 12px 35px rgba(239, 68, 68, 0.25),
      inset 0 1px 2px rgba(255, 255, 255, 0.3),
      0 0 20px rgba(239, 68, 68, 0.15);
  }
  50% {
    box-shadow:
      0 12px 35px rgba(239, 68, 68, 0.35),
      inset 0 1px 2px rgba(255, 255, 255, 0.3),
      0 0 30px rgba(239, 68, 68, 0.35);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive para formulario de reseñas */
@media (max-width: 768px) {
  .review-section-wrapper {
    margin-top: 60px;
  }

  .review-section-title {
    font-size: 28px;
  }

  .review-section-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .testimonials-review-divider {
    margin: 60px 0 40px;
  }

  #reviewForm {
    padding: 22px 20px;
    margin-top: 20px;
    border-radius: 16px;
    max-width: 420px;
  }

  #review-name,
  .rating-block,
  #review-comment {
    padding: 14px 16px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  #review-comment {
    min-height: 120px;
  }

  #reviewCounter {
    font-size: 12px;
    margin-top: -14px;
    margin-bottom: 20px;
  }

  #reviewForm > button {
    padding: 16px 20px;
    font-size: 14px;
    margin-bottom: 16px;
  }

  #reviewMessage {
    font-size: 13px;
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .review-section-wrapper {
    margin-top: 40px;
  }

  .review-section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .review-section-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .testimonials-review-divider {
    height: 1px;
    margin: 50px 0 30px;
    max-width: calc(100% - 30px);
  }

  #reviewForm {
    padding: 20px 16px;
    margin-top: 18px;
    border-radius: 14px;
    max-width: calc(100% - 30px);
  }

  #review-name,
  .rating-block,
  #review-comment {
    padding: 12px 14px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  #review-comment {
    min-height: 100px;
    line-height: 1.5;
  }

  #reviewCounter {
    font-size: 11px;
    margin-top: -12px;
    margin-bottom: 16px;
  }

  #reviewForm > button {
    padding: 14px 16px;
    font-size: 13px;
    margin-bottom: 14px;
  }

  #reviewMessage {
    font-size: 12px;
    padding: 12px 14px;
  }
}


