* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2d5a3d;
  --secondary-color: #f5f1e8;
  --text-dark: #000;
  --text-light: #666;
  --text-light-2: #999;
  --accent-green: #00d084;
  --border-color: #e0dbd0;
}

body {
  background-color: var(--secondary-color);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.site-header {
    background: #f6f2e7;
    width: 100%;
    border-bottom: 1px solid #e7e1d4;
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img{
    height: 42px;
    display: block;
}

/* NAV */
.header-nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

/* ====== NAV LINKS + ANIMAÇÃO DE SUBLINHADO ====== */

.nav-link,
.dropdown-toggle {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e1e1e;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

/* Línea invisible inicialmente */
.nav-link::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #2d5a3d;
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

/* Hover = línea que se expande hacia los lados */
.nav-link:hover::after,
.dropdown-toggle:hover::after {
    width: 100%;
}

.nav-link:hover,
.dropdown-toggle:hover {
    color: #2d5a3d;
}

/* Cuando está activo también queda marcado */
.nav-link.active::after,
.dropdown-toggle.active::after {
    width: 100%;
}

/* --- DROPDOWN --- */
.nav-dropdown {
    position: relative;
}

.chevron {
    font-size: 0.7rem;
    margin-left: 4px;
    display: inline-block;
    transition: transform .3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 36px;
    left: 0;
    width: 190px;
    background: #ffffff;
    padding: 14px 0;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #e8e8e8;
    z-index: 9999;
}



.dropdown-menu a {
    color: #222;
    font-size: 0.95rem;
    padding: 10px 20px;
    font-weight: 500;
    display: block;
    border-radius: 4px;
    transition: background .25s ease, transform .25s ease;
}

.dropdown-menu a:hover {
    background: #f2f2f2;
    transform: translateX(4px);
}


.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

.nav-dropdown:hover .chevron {
    transform: rotate(180deg);
}
/* Botón hamburguesa: oculto en desktop */
.mobile-menu-btn{
    display: none;              /* <- clave: no aparece en desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
}


/* ===========================
      MENU RESPONSIVO
=========================== */


.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #222;
    display: block;
    border-radius: 3px;
    transition: transform .35s ease, opacity .35s ease;
}

/* Botón X (solo mobile) */
.mobile-close-btn{
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 28px;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: #222;
}



@media (max-width: 900px) {

    .mobile-menu-btn {
        display: flex;
        z-index: 10001; /* siempre por encima */
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 360px;
        height: 100vh;
        background: #f6f2e7;
        display: flex;
        flex-direction: column;
        padding: 70px 40px 40px; /* deja espacio a la X */
        gap: 26px;
        transition: .4s ease;
        box-shadow: -4px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto; /* si hay mucho contenido, scrollea */
        z-index: 10000;
    }

    .header-nav.open {
        right: 0;
    }

    /* mostrar la X solo en mobile */
    .mobile-close-btn{
        display: block;
    }

    .nav-link,
    .dropdown-toggle {
        font-size: 1.2rem;
        padding-bottom: 4px;
        width: 100%;
        text-align: left;
    }

    /* --- SUBMENU COMO ACORDEÓN PROLIO --- */

    .nav-dropdown{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .dropdown-toggle{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* desactiva hover en mobile */
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    /* abre al tocar */
    .dropdown-toggle.active + .dropdown-menu {
        display: flex;
    }

    /* rota flecha cuando abre */
    .dropdown-toggle.active .chevron{
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 6px 0 6px 14px;
        margin: 0;
        border-left: 2px solid #2d5a3d;
        gap: 2px;
    }

    .dropdown-menu a {
        color: #333;
        padding: 8px 0;
        font-size: 1.05rem;
    }

    /* ---------------------------------
   FIX: hamburguesa no se vuelve X
---------------------------------- */
.mobile-menu-btn.active span{
    transform: none !important;
    opacity: 1 !important;
}

/* cuando el menú está abierto, oculto el hamburguesa
   (así solo queda la ✕ del panel) */
.mobile-menu-btn.active{
    opacity: 0;
    pointer-events: none;
}

}

/* ================= HERO SLIDER (QUEM SOU) ================= */

.hero-section{
  background: #f5f1e8;
}

.hero-carousel{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.hero-slide{
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

.hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 50px;
  width: 100%;
}

/* TEXTO */

.hero-content{
  align-self: center;
}

.hero-eyebrow{
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #2b3c25;
  font-weight: 600;
  margin-bottom: 26px;
}

.hero-title{
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 3.9rem;
  line-height: 1.05;
  color: #111;
  margin-bottom: 24px;
}

.hero-title-em{
  color: var(--primary-color);
}

.hero-subtitle{
  font-size: 1.4rem;
  color: #1f1f1f;
  max-width: 28rem;
  margin-top: 14px;
}

/* BOTONES HERO */

.hero-cta-group{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.hero-btn-primary{
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.hero-btn-primary:hover{
  background: #1e3f2a;
  border-color: #1e3f2a;
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.25);
}

.hero-btn-ghost{
  background: rgba(255,255,255,0.9);
  color: var(--primary-color);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.hero-btn-ghost:hover{
  background: #ffffff;
  transform: translateY(-2px);
}

/* IMAGEN */

.hero-image{
  position: relative;
  text-align: right;
}

.hero-image img{
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.25));
}

/* DOTS de Owl personalizados solo para el hero */
.hero-section .owl-dots{
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-section .owl-dot span{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.hero-section .owl-dot.active span{
  background: #ffffff;
  transform: scale(1.1);
}

/* ================= HERO – RESPONSIVO ================= */

@media (max-width: 1200px){
  .hero-title{
    font-size: 3.2rem;
  }
}

@media (max-width: 992px){
  .hero-section{
    padding: 60px 0 50px;
  }

  .hero-inner{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-content{
    order: 1;
  }

  .hero-image{
    order: 2;
    text-align: center;
  }

  .hero-image img{
    margin: 0 auto;
    max-width: 380px;
  }

  .hero-title{
    font-size: 2.6rem;
  }

  .hero-cta-group{
    justify-content: center;
  }

  .hero-section .owl-dots{
    bottom: 18px;
  }
}

@media (max-width: 576px){
  .hero-title{
    font-size: 2.2rem;
  }

  .hero-section{
    padding: 48px 0 45px;
  }

  .hero-carousel{
    padding: 0 18px;
  }

  .hero-btn{
    width: 100%;
    justify-content: center;
  }

  .hero-btn-ghost{
    background: #ffffff;
  }
}






/* ================= SOBRE MIM ================= */

.sobre-mim {
  background: linear-gradient(180deg, #f3efe4 0%, #ffffff 60%);
  padding: 5rem 2rem;
}

.sobre-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: stretch;
}

.sobre-image {
  position: relative;
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.sobre-content {
  background: #ffffff;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sobre-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8f8f8f;
}

.sobre-content h2 {
  font-size: 3rem;
  margin: 0;
}

.sobre-intro {
  font-size: 1.05rem;
  color: #3c3c3c;
  line-height: 1.9;
  margin: 0;
}

.sobre-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
  font-size: 0.96rem;
  color: #4a4a4a;
  line-height: 1.8;
}

.sobre-text-grid p {
  margin: 0;
}

.sobre-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sobre-pill {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 90, 61, 0.25);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d5a3d;
  background: rgba(45, 90, 61, 0.08);
}

.hero-btn-green {
  background: #21b16b;
  border-color: #21b16b;
  color: #fff;
  box-shadow: 0 18px 40px rgba(33, 177, 107, 0.35);
  align-self: flex-start;
}

.hero-btn-green:hover {
  background: #1c9459;
  border-color: #1c9459;
  transform: translateY(-2px);
}

/* ===========================
   SOBRE MIM — RESPONSIVO
=========================== */
@media (max-width: 992px) {
  .sobre-mim {
    padding: 4rem 1.5rem;
  }

  .sobre-container {
    grid-template-columns: 1fr;
  }

  .sobre-content h2 {
    font-size: 2.4rem;
  }

  .sobre-text-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .sobre-mim {
    padding: 3rem 1rem;
  }

  .sobre-content {
    padding: 2rem;
  }

  .sobre-content h2 {
    font-size: 2rem;
  }

  .sobre-intro {
    font-size: 1rem;
  }

  .sobre-text-grid {
    gap: 1rem;
    font-size: 0.93rem;
  }

  .hero-btn-green {
    width: 100%;
    justify-content: center;
  }
}




/* ================= AGENDA ================= */

.agenda-modern {
  background: #f5f1e8;
  padding: 60px 0;
}

#agenda-joao .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.agenda-eyebrow {
  letter-spacing: 0.25em;
  font-weight: 700;
  font-size: 14px;
  color: #2c3f26;
  margin-bottom: 10px;
}

.agenda-title {
  font-size: 48px;
  font-weight: 800;
  color: #2c3f26;
  margin-bottom: 35px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  padding: 24px 10px;
  transition: all 0.25s ease;
  gap: 24px;
}

.agenda-item:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.agenda-date {
  width: 110px;
  height: 80px;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.agenda-date .d {
  font-size: 32px;
  font-weight: 800;
  color: #2c3f26;
}

.agenda-date .m {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4px;
  color: #2c3f26;
  opacity: 0.8;
}

.agenda-body .agenda-name {
  font-size: 24px;
  font-weight: 800;
  color: #2c3f26;
  margin-bottom: 6px;
}

.agenda-meta {
  color: #3b3b3b;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.agenda-tag {
  background: #000;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .agenda-item {
      grid-template-columns: 90px 1fr;
      grid-template-rows: auto auto;
      row-gap: 12px;
  }

  .agenda-tag {
      justify-self: start;
  }

  .agenda-date {
    width: 90px;
    height: 70px;
  }

 .agenda-modern {
    padding: 45px 0;
  }

  .agenda-eyebrow {
    font-size: 12px;
  }

  .agenda-title {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .agenda-item {
    padding: 18px 0;
    gap: 16px;
  }

  .agenda-body .agenda-name {
    font-size: 19px;
    line-height: 1.25;
    word-break: break-word; /* evita desbordes en títulos largos */
  }

  .agenda-meta {
    font-size: 14px;
    flex-wrap: wrap;
  }

  .agenda-tag {
    font-size: 11px;
    padding: 7px 12px;
  }
}

@media (max-width: 420px) {
  .agenda-item {
    grid-template-columns: 70px 1fr; /* aún más compacto */
  }

  .agenda-date {
    width: 70px;
    height: 60px;
    border-radius: 12px;
  }

  .agenda-date .d { font-size: 26px; }
  .agenda-date .m { font-size: 12px; }

  .agenda-body .agenda-name {
    font-size: 17px;
  }
}



/* ================= VAMOS CONVERSAR ================= */

.contact-section {
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 900;
}

.contact-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

.contact-boxes {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-box {
    text-align: center;
    width: 250px;
}

.contact-icon {
    width: 110px;
    height: 110px;
    background: #ece7dd; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.contact-box h3 {
    margin-top: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
}

.contact-box p a {
    text-decoration: none;
    color: #111;
    font-size: 1rem;
    font-weight: 500;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-send {
    background: #2d5a3d;
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover {
    background: #1e3f2a;
}

.contact-img {
    background-image: url('/images/perfil/2.png');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .contact-boxes {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-img {
        height: 350px;
    }
}




/* ================= CONTACTOS EXTRA ================= */

.contactos {
  background-color: var(--secondary-color);
  padding: 5rem 2rem;
}

.contactos-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contactos h2 {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
}

.contactos-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-option {
  text-align: center;
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  width: 80px;
  height: 80px;
  background-color: #e8e3d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-option h3 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-option p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
}

.contact-form-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea {
  resize: vertical;
}



/* ================= FOOTER ================= */

.site-footer {
    background: #1e2f19;
    padding: 60px 0 30px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.site-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: block;
    max-width: 190px;
    height: auto;
    margin-bottom: 16px;
}

.footer-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 360px;
    margin: 0;
}

.footer-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
    font-weight: 600;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #d9b748;
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-contact li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact li a:hover {
    color: #d9b748;
}

.footer-sep {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-top: 30px;
    margin-bottom: 20px;
    border: none;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #999;
    margin: 0;
}

.footer-bottom strong {
    color: #fff;
    font-weight: 700;
}

/* ================= BOTÓN WHATSAPP FLOTANTE ================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.6);
}

/* ================= FOOTER RESPONSIVE ================= */

@media (max-width: 992px) {
  .site-footer .container {
    padding: 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 50px 0 25px;
  }

  .site-footer .container {
    padding: 0 22px;
  }

  .footer-grid {
    gap: 40px;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-logo {
    max-width: 150px;
    margin: 0 auto 16px;
  }

  .footer-text {
    font-size: 0.9rem;
    margin: 0 auto;
    max-width: 100%;
  }

  .footer-links,
  .footer-contact {
    padding-left: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-contact li {
    justify-content: center;
    font-size: 0.9rem;
  }

  .footer-title {
    margin-bottom: 12px;
  }

  .footer-bottom p {
    font-size: 0.9rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 20px;
    bottom: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Mensagem de estado do formulário de contacto */
.contact-status {
  margin-top: 10px;
  font-size: 0.95rem;
}

.contact-status.success {
  color: #2d5a3d; /* mismo verde del sitio */
}

.contact-status.error {
  color: #c0392b; /* rojo para errores */
}
