@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root{
    --bg-color: #fff;
    --main-color: #d1d1d1;
    --text-color: #010101;
    --c2-color: #434343;
    --other-color: #666666;
    --tc-color :#1beff5;
    --accent-green: #fbe5e5;
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
    --footer-text-secondary: #888888;
    --h1-font: 5rem;
    --h2-font: 2.3rem;
    --p-font: 1.3rem;
    --hf-font-size: 15px;
    --hf-font-weight: 400;
}

header,
footer {
  font-size: var(--hf-font-size);
  font-weight: var(--hf-font-weight);
}

header .navbar-f a,
footer .footer-box li a {
  font-size: var(--hf-font-size);
  font-weight: var(--hf-font-weight);
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Subheader: Siempre fijo en la parte superior */
.sub-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 8px 0;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  background-color: black;
  color: white;
  z-index: 999;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 30px;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 10%);
  display: flex;
  justify-content: space-between;
  padding: 0px 14%;
  transition: top 0.5s ease;
}

.logo img {
    width: 180px;
    height: auto;
}

.navbar-f {
    display: flex;
    align-items: center;
}

.navbar-f a {
    display: flex;
    color:  var(--text-color);
    font-size: 10px;
    font-weight: 500;
    margin: 20px 22px;
    text-decoration: none;
     width: 100%;
}

.navbar-f li {
     width: 100%;
       white-space: nowrap;
}

.navbar-f a.navbar-a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.navbar-f a.navbar-a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 0;
  height: 3px;
  background-color: #fbe5e5;
  transition: width 0.3s ease-in-out;
}

.navbar-f a.navbar-a:hover::after {
  width: 100%;
}

ol,
ul {
  padding-left: 0rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0rem;
}

/* Contenedor del item de "PRODUCTOS" */
.productos-item {
  position: relative;
}

.productos-hover {
  padding: 0 14%;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-sizing: border-box;
  z-index: 999;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.productos-item:hover .productos-hover,
.productos-hover:hover {
 display: flex;
}

.productos-hover .column {
margin: 0px;
}

.column {
  flex: 0.250;
}

.promo-column {
  flex-shrink: 0;
  margin-left: auto;
}

.column li .name-p  {
 font-weight: bold;
 position: relative;
  text-decoration: none;
}

.column ul {
  list-style: none;
  margin: 0;
  margin-bottom: 0px;
}

.column ul li a {
  font-size: 0.8rem;
  display: block;
  color: #000000;
  text-decoration: none;
  margin-left: 10px;
  margin-bottom: 0px;
  transition: color 0.3s ease;
}

.promo-column .promo-link {
  margin-bottom: 50px;
  position: relative;
  display: flex;
  width: 350px;
  height: 250px;
  background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=350&q=80');
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.promo-column .promo-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.promo-column .promo-content p {
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.promo-column .promo-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.promo-column .promo-btn:hover {
  background: #fff;
  color: #000;
}

/* MENU RESPONSIVE */
.h-icons {
    display: flex;
    align-items: center;
}

.h-icons i {
    font-size: 25px;
    color: var(--text-color);
    margin-left: 5px;
    margin-right: 20px;
}

.menu-br {
    font-size: 25px;
    color: var(--text-color);
    margin-left: 5px;
    margin-right: 20px;
}

#menu-icon {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 1328px) {
    .navbar-f {
        display: none;
    }
    #menu-icon {
        display: flex;
        font-size: 30px;
        cursor: pointer;
    }
    .h-icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-f.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        align-items: flex-start;
         transform: translateX(0);
    }
    .productos-hover {
        display: none !important;
    }

    .productos-item:hover .productos-hover {
        display: none !important;
    }
    a {
        color:black;
        text-decoration: none;
     }
    a:hover {
    color: black;
    text-decoration: none;
    }
}

@media screen and (max-width: 960px) {
    header {
        padding: 0px 0%;
    }
}

@media screen and (max-width: 480px) {
    header {height: 60px;}
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
        z-index: 1100;
    }
    .navbar-f.active {
        top: 58px;
    }
    .logo img {
        width: 120px;
        transition: width 0.3s ease-in-out;
    }
    body.scrolled .logo img {
        width: 100px;
    }

    .h-icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 10px;
        left: 0;
        padding: 0 10px;
        z-index: 1100;
    }

    .h-icons i {
        margin-top: 10px;
        font-size: 20px;
    }
    #menu-icon {
        margin-right: 5px;
        margin-top: 7px;
        font-size: 24px;
    }
    .navbar-f a.navbar-a{
        font-size: 0.7rem;
    }
}

/* MAIN CONTENT CON BACKGROUND DE PRODUCTOS */
.main-content {
    width: 100%;
    overflow-x: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, #f1b0b3 0%, #dc5764 100%);
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.content-left {
    color: white;
}

.content-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.content-text {
    margin-bottom: 3rem;
}

.content-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Botón CTA con estilos de productos */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(45deg, #e9838a, #dc5764);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(220, 87, 100, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 87, 100, 0.4);
}

.button-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Acordeón con estilos mejorados */
.accordion-container {
    background: rgba(255, 255, 255);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-item {
    transition: all 0.3s ease;
    border: none;
    border-bottom: 1px solid rgba(220, 87, 100, 0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: #dc5764;
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: #dc5764;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    color: var(--other-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    color: var(--other-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.content-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #dc5764;
    font-weight: 600;
}

/* Sección FAQ con background de productos */
.faq-section {
    padding: 80px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.faq-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fdf3f3, #fbe5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 400;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #dc5764;
    box-shadow: 0 30px 60px rgba(220, 87, 100, 0.2);
}

.faq-header-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-header-btn:hover {
    background: rgba(220, 87, 100, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #dc5764;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 200px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
}

.faq-content p {
    color: var(--other-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 60px 20px;
    }

    .content-left {
        text-align: center;
    }

    .accordion-container {
        padding: 1.5rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        margin-top: 60px;
    }

    .content-grid {
        padding: 40px 15px;
        gap: 2rem;
    }

    .accordion-container {
        padding: 1rem;
    }

    .accordion-header,
    .faq-header-btn {
        padding: 1rem;
    }

    .faq-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .content-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .content-text p {
        font-size: 16px;
    }
}

/* MODERN FOOTER (igual que productos) */
.modern-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: auto;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--accent-green);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-green) 0%, #f5d5d5 50%, var(--accent-green) 100%);
  opacity: 0.1;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.newsletter-header {
  color: var(--footer-bg);
}

.newsletter-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.newsletter-description {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
  max-width: 400px;
}

.newsletter-form {
  min-width: 400px;
}

.input-container {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 500px;
}

#email {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  font-size: 1rem;
  color: var(--footer-bg);
  background: transparent;
  outline: none;
}

#email::placeholder {
  color: #666;
  font-weight: 400;
}

.subscribe-btn {
  padding: 1rem 2rem;
  border: none;
  background: var(--footer-bg);
  color: var(--accent-green);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.privacy-text {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--footer-bg);
  opacity: 0.7;
}

.privacy-link {
  color: var(--footer-bg);
  text-decoration: underline;
  font-weight: 500;
}

/* Main Footer Content */
.footer-content {
  padding: 4rem 0 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 4rem;
  align-items: start;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.brand-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--footer-text);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.brand-tagline {
  font-size: 1rem;
  color: var(--footer-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info p {
  color: var(--footer-text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  color: var(--footer-text);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icons a:hover {
  background: var(--accent-green);
  color: var(--footer-bg);
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.links-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--footer-text);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.links-column ul li a {
  color: var(--footer-text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.links-column ul li a:hover {
  color: var(--accent-green);
}

dl, ol, ul {
    margin-top: 0;
    padding-left: 0rem !important;
  }

/* Copyright */
.copyright {
  border-top: 1px solid #333;
  padding: 1.5rem 0;
  text-align: center;
  background: var(--footer-bg);
}

.copyright p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--footer-text-secondary);
  font-weight: 400;
  letter-spacing: 0.5px;
}













/* Responsive Design Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .newsletter-form {
    min-width: auto;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 2rem 0;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .footer-content {
    padding: 3rem 0 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .social-icons {
    justify-content: center;
  }

  .input-container {
    flex-direction: column;
  }

  .subscribe-btn {
    padding: 1.2rem 2rem;
  }
}

@media (max-width: 480px) {
  .newsletter-container,
  .footer-grid {
    padding: 0px 2rem;
  }

  .newsletter-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .input-container {
    flex-direction: column;
    width: 100%;
  }
  #email {
    font-size: 0.6rem;
  }
  .subscribe-btn{
    font-size: 0.6rem;
  }
  .brand-title {
    font-size: 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-links {
    text-align: left;
  }
}
/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
======================================== */

/* ===== DESKTOP LARGE (1328px y menor) ===== */
@media screen and (max-width: 1328px) {
    .navbar-f {
        display: none;
    }
    
    #menu-icon {
        display: flex;
        font-size: 30px;
        cursor: pointer;
    }
    
    .h-icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-f.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        align-items: flex-start;
        transform: translateX(0);
    }
    
    .productos-hover {
        display: none !important;
    }

    .productos-item:hover .productos-hover {
        display: none !important;
    }
    
    a {
        color: black;
        text-decoration: none;
    }
    
    a:hover {
        color: black;
        text-decoration: none;
    }
}

/* ===== TABLET LARGE (1024px y menor) ===== */
@media (max-width: 1024px) {
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== TABLET (960px y menor) ===== */
@media screen and (max-width: 960px) {
    header {
        padding: 0px 0%;
    }
}

/* ===== TABLET/MOBILE (768px y menor) ===== */
@media (max-width: 768px) {
    /* Main Content */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 60px 20px;
    }

    .content-left {
        text-align: center;
    }

    .accordion-container {
        padding: 1.5rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Footer */
    .newsletter-section {
        padding: 2rem 0;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .footer-content {
        padding: 3rem 0 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .social-icons {
        justify-content: center;
    }

    .input-container {
        flex-direction: column;
        min-width: 300px;
    }

    .subscribe-btn {
        padding: 1.2rem 2rem;
    }
}

/* ===== MOBILE LARGE (480px y menor) ===== */
@media screen and (max-width: 480px) {
    /* Header */
    header {
        height: 60px;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
        z-index: 1100;
    }
    
    .navbar-f.active {
        top: 58px;
    }
    
    .logo img {
        width: 120px;
        transition: width 0.3s ease-in-out;
    }
    
    body.scrolled .logo img {
        width: 100px;
    }

    .h-icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 10px;
        left: 0;
        padding: 0 10px;
        z-index: 1100;
    }

    .h-icons i {
        margin-top: 10px;
        font-size: 20px;
    }
    
    #menu-icon {
        margin-right: 5px;
        margin-top: 7px;
        font-size: 24px;
    }
    
    .navbar-f a.navbar-a {
        font-size: 0.7rem;
    }

    /* Main Content */
    .main-content {
        margin-top: 60px;
    }

    .content-grid {
        padding: 40px 15px;
        gap: 2rem;
    }

    .accordion-container {
        padding: 1rem;
    }

    .accordion-header,
    .faq-header-btn {
        padding: 1rem;
    }

    .faq-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .content-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .content-text p {
        font-size: 16px;
    }

    /* Footer */
    .newsletter-container,
    .footer-grid {
        padding: 0px 2rem;
    }

    .newsletter-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .input-container {
        flex-direction: column;
        width: 100%;
    }
    
    #email {
        font-size: 0.6rem;
    }
    
    .subscribe-btn {
        font-size: 0.6rem;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        text-align: left;
    }
}