@charset "UTF-8";
body, html {
	background-color: #1e1e1e;
	padding: 0;
	margin: 0;		
}
body {
    overflow-x: hidden;
}

html {
    overflow-x: visible;
}
/*REMOVE O ASPECTO 3D DOS BOTÕES DO SITE*/
button {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    box-shadow: none;
    font-family: inherit;
}
/*ESCONDER CAPTCHA DO GOOGLE*/
.grecaptcha-badge {
		display: none !important;
}


/* ===== HEADER FIXO ===== */
.samuellalmeida-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.samuellalmeida-topbar {
    background: #12221A;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*====BOTÃO DE ATENDIMENTO MOBILE=====*/
.sa-fixed-mobile-bar {
    display: none;
}

@media (max-width: 767px) {
    .sa-fixed-mobile-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px 0;
        background: #12221a;
        border-top: 0.5px solid #cc965e;
        z-index: 9999;

        display: flex;
        justify-content: center;
        align-items: center;
    }
}


@media (min-width: 768px) {
    .sa-fixed-mobile-btn {
        display: none;
    }
}

.sa-fixed-mobile-btn {
    display: inline-block;
    padding: 8px 18px;
    background: transparent;
    color: #cc965e;
    border: 1px solid #cc965e;
    font-size: 8px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sa-fixed-mobile-btn:hover {
    background: #cc965e;
    color: #12221a;
}


/*=====================================
===========FONTES DO SITE==============
=====================================*/


/* Fonte padrão global */
body {
  font-family: 'Poppins', sans-serif;
}
h1 {
  font-family: 'playfair-display', sans-serif;
}
h2 {
  font-family: 'playfair-display', sans-serif;
}
h3 {
  font-family: 'playfair-display', sans-serif;
}
p {
	font-family: 'Poppins', sans-serif;
}


/*=====================================
===========CABEÇALHO==============
=====================================*/

.samuellalmeida-header {
	height: 32px;
}

/* ===== HAMBURGER ===== */
.samuellalmeida-hamburger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.samuellalmeida-hamburger span {
    width: 36px;
    height: 1px;
    background-color: #CC965E;
    display: block;
}

.samuellalmeida-topbar {
    position: relative;
	height: 32px;
	margin-bottom: 40px;
}

.samuellalmeida-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.samuellalmeida-logo img {
    height: 32px;
    display: block;
}


/* ===== CTA Desktop ===== */
.samuellalmeida-cta {
    background: #12221A;
    color: #cc965e;
	border: 1.5px #cc965e solid;
    padding: 5px 10px;
    text-decoration: none;
	font-size: 10px;
    font-weight: 300;
    display: inline-block;
}

.samuellalmeida-cta:hover {
	background: #cc965e;
    color: #12221a;
	transition: color 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 768px) {
    .samuellalmeida-cta {
        display: none;
    }
	samuellalmeida-logo {
text-align: center;
}
}

/* ===== OFFCANVAS MENU ===== */
.samuellalmeida-offcanvas {
    position: fixed;
    top: 0;
    left: -360px;
    width: 230px;
    height: 100vh;
    background: #12221A;
    padding: 40px 20px;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
	box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
	
}

.samuellalmeida-offcanvas.open {
    left: 0;
}

/* Itens do menu WP */
	.samuellalmeida-menu, .samuellalmeida-menu ul {
	list-style: none !important;
		margin: 0;
    padding: 0;
	
	}
	
.samuellalmeida-menu li a {
    color: #F4F1EB;
    font-size: 11px;
	font-weight: 300;
    padding: 5px 0;
    display: block;
    text-decoration: none;
	list-style: none !important;
	text-transform: uppercase;
}

.samuellalmeida-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 0;
}

.samuellalmeida-menu li:last-child {
    border-bottom: none; /* evita linha sobrando no final */
}

.samuellalmeida-menu li a:hover {
    color: #cc965e;
}

/* ===== SOCIAL ICONS ===== */
.samuellalmeida-socials {
    margin-top: auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-bottom: 120px;
}

.samuellalmeida-socials a {
    color: #f4f1eb;
    font-size: 14px;
	background-color: #1b2d36;
	border-radius: 50%;
	padding: 4px 8px 1px 8px;
}

.samuellalmeida-socials a:hover {
    color: #12221a;
	background-color: #cc965e;
}
@media (max-width: 768px) {
.samuellalmeida-socials {
	padding-bottom: 220px;
	}}
/* ============================ */
/* SUBMENU – OFFCANVAS */
/* ============================ */

/* Esconde submenus inicialmente */
.samuellalmeida-menu .sub-menu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

/* Estilo dos links dentro do submenu */
.samuellalmeida-menu .sub-menu li a {
    font-size: 10px;
    opacity: 0.8;
}

/* Adicionar seta nos itens que têm submenu */
.samuellalmeida-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 18px;
}

/* Setinha fechada (↓) */
.samuellalmeida-menu .menu-item-has-children > a::after {
    content: "▼";
    font-size: 8px;
    position: absolute;
    right: 0;
    top: 2px;
}

/* Quando ativado */
.samuellalmeida-menu .menu-item-has-children.open > a::after {
    content: "▲";
}

/* Divider para submenus */
.samuellalmeida-menu .sub-menu li {
    border-bottom: none;
}

/* Suavidade */
.samuellalmeida-menu .sub-menu {
    transition: all .3s ease;
}
/*-----busca no menu-------*/
.mobile-search {
	height: 60px;
	margin-bottom: 10px;
}
.mobile-search input {
	border-radius: 0px;
    background-color: #f4f1eb;
	width: 16vw;
	height: 30px;
	padding: 5px;
	border: .6px solid #cc965e;
}
@media (max-width: 768px) {
	.mobile-search input {
	width: 40vw;
	}
}
.mobile-search input:focus {
	outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.mobile-search .search-bt-mb {
	height: 30px;
	margin-left: -10px;
	background-color: #cc965e;
	width: 30px;
	color: #12221a;
	transition: background-color .5s;
}
.mobile-search .search-bt-mb:hover {
	color: #cc965e;
	background-color: #1b2d36;
}

/*=====================================
===========RODAPÉ DO SITE==============
=====================================*/
.site-footer {
  background-color: #12221a;
  color: white;
  padding-top: 0;
  font-size: 12.9px;

}

.site-footer a {
  color: white;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #cc965e; /* opcional, tom de destaque */
}

/* Layout Desktop */
.desktop-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 40px;
}

@media (max-width: 780px) {
	.footer-desktop-logo {
		display: none;
	
	}}
.footer-desktop-logo {
  margin: 10px;
  text-align: center;
}
.footer-desktop-logo img {
	align-content: center;
	width: 80px;
	height: auto;
}
.footer-follow {
  margin-top: 40px;
}

.footer-follow-label h2 {
  font-weight: bold;
  margin-right: 16px;
	 color: #cc965e;
  margin-bottom: 15px;
}


.footer-social-icons a {
  padding: 3px 5px 1px 5px;
  margin: 12px 6px 0px 0px;
  font-size: 21px;
  color: #f4f1eb !important;
  background-color: #1b2d36;
  border-radius: 50%;

  /* Anima APENAS cor e background */
  transition: color 0.3s ease, background-color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #12221a !important;
  background-color: #cc965e;
}



.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h2 {
  font-size: 16px;
  font-family: 'playfair-display', sans-serif;
  color: #cc965e;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a,
.footer-col p,
.footer-col a {
  color: #f4f1eb;
font-family: "poppins", sans-serif;
font-weight: 300;
	font-size: 11px;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Redes sociais */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  font-size: 14px;
  padding: 1px 6px 1px 6px;
  color: #f4f1eb;
  background-color: #1b2d36;
  border-radius: 50%;
}
.footer-social a:hover {
  font-size: 14px;
  padding: 1px 6px 1px 6px;
  color: #12221a;
  background-color: #cc965e;
}


/* Rodapé base */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
  background-color: #12221a;
  border-top: 1px solid rgba(204,150,94,0.9);
  font-size: 12px;
	font-family: "Poppins", sans-serif;
}

.footer-bottom .footer-credit {
  text-align: right;
  flex: 1 1 200px;
	 font-size: 8px;
}
.footer-bottom .footer-copy {
  font-size: 8.6px;
  font-family: "Poppins", sans-serif;
  text-align: left;
  flex: 1 1 200px;
}
/* Logo no rodapé mobile */
.footer-logo img {
  max-width: 80px;
  margin: 20px auto;
  display: block;
}

/* Mobile: esconde layout desktop */
.footer-mobile {
  display: none;
}

.mobile-only {
  display: none;
}

/* Accordion */
.footer-accordion {
  padding: 20px;
}

.accordion-item {
  border-bottom: 1px solid rgba(205,150,94,.9);
}

.accordion-toggle {
  background: none;
  border: none;
  color: #cc965e;
  font-weight: 600;
  text-align: left;
  padding: 4px 0;
  width: 100%;
  font-size: 10px;
  cursor: pointer;
  display: flex;                  /* organiza em linha */
  justify-content: space-between; /* título à esquerda, ícone à direita */
  align-items: center;            /* centraliza verticalmente */
}
.accordion-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
	text-decoration: none !important;
}

/* (opcional) Girar ícone ao abrir */
.accordion-item.active .accordion-icon {
  transform: rotate(360deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content ul {
  padding-left: 0;
  margin: 10px 0;
  list-style: none;
  color: #f4f1eb;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 11px;
	line-height: 2.2em;
}
.accordion-content P {
  padding-left: 0;
  margin: 10px 0;
  list-style: none;
  color: #2C2C2C;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 11px;
	line-height: 2.2em;
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* espaço suficiente para abrir */
}

.footer-contact,
.footer-newsletter {
  padding: 20px;
  text-align: left;
}

.footer-newsletter h2,
.footer-contact h2 {
  font-size: 16px;
  color: #cc965e;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .desktop-footer {
    display: none;
  }

  .footer-mobile {
    display: block;
  }

  .mobile-only {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px; /* menor distância entre os blocos */
    padding: 10px 0 5px; /* reduz espaço acima/abaixo */
	
  }

  .footer-bottom .footer-copy ,
  .footer-bottom .footer-credit  {
	  justify-content: center;
	  max-height: 30px;
    margin: 10px auto;
    padding: 2px 25px 60px 25px;;
    text-align: center !important; /* força centralização mesmo com inline styles */
  }
	.footer-bottom .footer-copy p {
		text-align: center;
		font-size: 10px;
	}
.footer-bottom .footer-credit {
    margin-top: -52px !important; /* ajusta distância sutil entre copy e credit */
  }
  
}


.accordion-toggle .accordion-icon {
  right: 5px;
  margin-left: 8px;
  font-size: 15px;
}

/*=====================================
===========HOMEPAGE==============
=====================================*/
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
  background-color: #2c2c2c;
  text-align: center;
	margin-bottom: -10px;
}

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

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

.hero-video .is-fixed {
    position: fixed;
}

.hero-content {
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.hero-logo {
  width: 90px;
  margin-bottom: 15px;
}

/* Textos */
.hero-line {
  font-weight: 200;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

/* 1ª e 3ª linha */
.hero-line-1,
.hero-line-3 {
  color: #f4f1eb;
  font-size: 1.4rem;
}

/* Linha do meio (troca) */
.hero-line-2 {
  color: #cc965e;
  font-size: 1.4rem;
  margin: 10px 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    padding: 20% 5% 10% 5%;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;        /* >>> Preenche toda a altura SEMPRE */
    object-fit: cover;   /* >>> Corta laterais sem problema */
    z-index: 0;
  }

  .hero-logo {
    width: 50px;
  }

  .hero-line-2 {
    font-size: 1.8rem;
  }

  .hero-line-1,
  .hero-line-3 {
    font-size: 1.1rem;
  }
}

/*-------SEGUNDA SEÇÃO--------*/

.samuell-section-intro {
  background: #1e1e1e;
  padding: 70px 20px;
  text-align: center;
  z-index: 4;
	position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;     /* <- CENTRALIZA HORIZONTAL */
  justify-content: center; /* <- GARANTE CENTRALIZAÇÃO VERTICAL */
}

.samuell-section-intro .intro-text {
  font-weight: 260;
  color: #ffffff;
  font-size: 1.1rem;
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.samuell-section-intro .intro-signature {
  width: 160px;
  max-width: 80%;
  display: block;
  margin: 0 auto 60px auto;   /* <- GARANTE CENTRALIZAÇÃO */
}

.samuell-section-intro .intro-detail {
  width: 50px;
  max-width: 70%;
  display: block;
  margin: 0 auto;              /* <- 100% CENTRALIZADA */
  opacity: 0.7;
}

/* Responsivo */
@media (max-width: 768px) {
  .samuell-section-intro {
    padding: 70px 20px;
  }

  .samuell-section-intro .intro-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
}
/*-------seção noivas--------------*/
.home-noivas {
  position: relative;

  padding: 45px;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background-size: cover;
}

.home-noivas-overlay {
  position: absolute;
  inset: 0;
  background: #2C2C2C;
background: linear-gradient(90deg, rgba(44, 44, 44, 0) 0%, rgba(44, 44, 44, 0.81) 100%);
  z-index: 1;
}

.home-noivas-content {
  position: relative;
  z-index: 2;
  max-width: 30%;
  color: #fff;
  text-align: center;
  margin-right: 12%;
}
.home-noivas-title {
  font-size: 2.8rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

.home-noivas-line-detail {
	width: 200px;
	height: auto;
}

.home-noivas-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}


.home-noivas-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
	color: #ffffff;
  background: rgba(0,0,0,0);;
  border: 1.4px solid #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
 font-weight: 500;
  text-transform: uppercase;
  padding: 8px 22px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.home-noivas-button:hover {
  background: #cc965e;
  color: #12221a;
  border: solid 1.4px #cc965e;
}

.home-noivas-button i {
  font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
	.home-noivas {
       background-position: 28% center;
		justify-content: center;
		align-items: center;
		padding: 25px;
		overflow-x: hidden;
		background-size: cover;
	}	
  .home-noivas-content {
    max-width: 200%;
    margin: 0 auto;
    margin-right: 0 !important;/* zera qualquer margin-right herdada */
    padding: 10px 20px;             /* pequeno espaçamento interno */
    text-align: center;
	  
  }
	.home-noivas-line-detail {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 12px;
  }
    .home-noivas-text {
     font-size: 1rem;
     line-height: 1.7;
     color: #ffffff;
      margin: 0 auto 35px;
}
  .home-noivas-overlay {
    background: rgba(0, 0, 0, 0.25);
  }
	.home-noivas-button {
		border: 2.4px solid #ffffff;
	}}

/*-------SEção INTERMEDIARIA--------*/

.samuell-section-intermedio {
  background: #2c2c2c;
  padding: 20px 20px;
  text-align: center;
  z-index: 4;
	position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;     /* <- CENTRALIZA HORIZONTAL */
  justify-content: center; /* <- GARANTE CENTRALIZAÇÃO VERTICAL */
}

.samuell-section-intermedio .intro-detail {
  width: 40px;
  display: block;
  margin: 0 auto;              /* <- 100% CENTRALIZADA */
  opacity: 0.7;
}

/* Responsivo */
@media (max-width: 768px) {
  .samuell-section-intro {
    padding: 20px 20px;
  }
}
/*-------seção evening--------------*/
.home-evening {
  position: relative;

  padding: 45px;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-size: cover;
}

.home-evening-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.home-evening-content {
  position: relative;
  z-index: 2;
  max-width: 30%;
  color: #fff;
  text-align: center;
  margin-right: 12%;
}
.home-evening-title {
  font-size: 2.2rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

.home-evening-line-detail {
	width: 200px;
	height: auto;
}

.home-evening-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #f4f1eb;
  margin-bottom: 20px;
}


.home-evening-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
	color: #cc965e;
  background: rgba(0,0,0,0);;
  border: 1px solid #cc965e;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
 font-weight: 500;
  text-transform: uppercase;
  padding: 8px 22px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.home-evening-button:hover {
  background: #cc965e;
  color: #12221a;
}

.home-evening-button i {
  font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
	.home-evening {
       background-position: center center;
		justify-content: center;
		align-items: center;
		padding: 25px;
		overflow-x: hidden;
		background-size: cover;
	}	
  
  .home-evening-content {
    max-width: 200%;
    margin: 0 auto;
    margin-right: 0 !important;/* zera qualquer margin-right herdada */
    padding: 10px 20px;             /* pequeno espaçamento interno */
    text-align: center;
	  
  }
	.home-evening-line-detail {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 12px;
  }
    .home-evening-text {
     font-size: 1rem;
     line-height: 1.7;
     color: #f4f1eb;
      margin: 0 auto 35px;
}

  .home-evening-overlay {
    background: rgba(0, 0, 0, 0.3);
  }
}
/*-------seção samuell--------------*/
.home-samuell {
  position: relative;

  padding: 45px;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background-size: cover;
}

.home-samuell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0);
  z-index: 1;
}

.home-samuell-content {
  position: relative;
  z-index: 2;
  max-width: 30%;
  color: #fff;
  text-align: center;
  margin-right: 12%;
}
.home-samuell-title {
  font-size: 2.2rem;
  line-height: 1.1;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.home-samuell-line-detail-cinza {
	width: 200px;
	height: auto;
}
.home-samuell-line-detail-branco {
	display: none;
}


.home-samuell-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #2C2C2C;
  margin-bottom: 20px;
}


.home-samuell-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
	color: #2C2C2C;
  background: rgba(0,0,0,0);;
  border: 1px solid #2C2C2C;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
 font-weight: 500;
  text-transform: uppercase;
  padding: 8px 22px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.home-samuell-button:hover {
  background: #2C2C2C;
  color: #f4f1eb;
}

.home-samuell-button i {
  font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
	.home-samuell {
       background-position: 165% center;
		justify-content: center;
		align-items: center;
		padding: 55% 10% 5% 10%;
		overflow-x: hidden;
		background-size: cover;
	}	
  
  .home-samuell-content {
    max-width: 200%;
    margin: 0 auto;
    margin-right: 0 !important;/* zera qualquer margin-right herdada */
    padding: 30px 20px;             /* pequeno espaçamento interno */
    text-align: center;
	  
  }
	.home-samuell-title {
		color: #f4f1eb;
		font-size: 1.9em;
	}
	.home-samuell-line-detail-cinza {
    display: none;
  }
	.home-samuell-line-detail-branco {
    max-width: 100%;
		width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 12px;
  }
    .home-samuell-text {
     font-size: 1rem;
     line-height: 1.7;
     color: #f4f1eb;
      margin: 0 auto 35px;
}

  .home-samuell-overlay {
    background: rgba(0, 0, 0, 0.4);
  }
	.home-samuell-button {
		gap: 14px;
	color: #f4f1eb;
  background: rgba(0,0,0,0);;
  border: 1px solid #f4f1eb;
	}
}

/* Seção Ateliers */
.home-atelieres {
    text-align: center;
    padding: 40px 100px;
	background-color: #f4f1eb;
}
@media (max-width: 768px) {
	.home-atelieres {
		padding: 40px 40px;
	}}


.home-atelieres-detail {
    width: 30px;
    margin: 0 auto 25px;
    display: block;
}

.home-atelieres-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.home-atelieres-subtitle {
    font-size: 1.1rem;
	font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 50px;
}

/* Seção Novidades */
.home-novidades {
    text-align: center;
    padding: 40px 100px;
	background-color: #f4f1eb;
}
@media (max-width: 768px) {
	.home-novidades {
		padding: 40px 40px;
	}}


.home-novidades-detail {
    width: 30px;
    margin: 0 auto 25px;
    display: block;
}

.home-novidades-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.home-novidades-subtitle {
    font-size: 1.1rem;
	font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 50px;
}


/* SEÇÃO INSTAGRAM */
.home-instagram {
    background-color: #12221a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    gap: 40px;
}

/* Lado esquerdo — 1/5 */
.home-instagram-left {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-instagram-left i {
    font-size: 30px;
    color: #cc965e;
}

/* Lado direito — 4/5 */
.home-instagram-right {
    width: 80%;
    text-align: center;
}

/* BOTÃO */
.home-instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 15px;

    background: #12221a;
    border: 1px solid #cc965e;
    padding: 6px 18px;
    color: #cc965e;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 500;



    transition: background 0.3s ease, color 0.3s ease;
}

.home-instagram-button i {
    font-size: 18px;
    color: #cc965e;
}

.home-instagram-button:hover {
    background: #cc965e;
    color: #12221a;
}

.home-instagram-button:hover i {
    color: #12221a;
}

/* MOBILE */
@media (max-width: 768px) {
    .home-instagram {
        flex-direction: column;
        gap: 25px;
        padding: 50px 20px;
		margin-bottom: -20px;
    }

    .home-instagram-left,
    .home-instagram-right {
        width: 100%;
    }

    .home-instagram-left i {
        font-size: 30px;
    }

    .home-instagram-button {
        margin-top: 25px;
    }
}

/* =========================================================
   HERO — IMPRENSA / PÁGINAS INTERNAS
   ========================================================= */
.loguinho {
	display: flex;
	justify-content: center;
	padding: 60px 20px 0px 20px;
	margin-bottom: 0px;
}

.loguinho img {
	width: 20px;
	height: auto;
}


.hero-section-muitas {
    padding: 0px 10px 20px 10px;
    text-align: center;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    color: #f4f1eb;
	margin: 0;

}

.hero-section-muitas .muitas-content {
    max-width: 800px;
	justify-content: center !important;
    align-items: center !important;
	text-align: center !important;
	
}
.hero-section-muitas .muitas-titulo {
margin: 0 auto 20px auto;
    font-size: 1.8rem;
    letter-spacing: 2px;
    display: block;
}
.hero-section-muitas .muitas-titulo h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

p.muitas-texto {
    font-size: .7rem;

    line-height: 1.9;
    margin-bottom: 25px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section-muitas {
		display: block !important;
        justify-content: center;
        padding-left: 5px !important;
        padding-right: 5px !important;
        text-align: center !important;
		
    }

    .hero-section-muitas .muitas-content {
        margin: 0 auto !important;
        text-align: center !important;
    }
	.hero-section-muitas .muitas-titulo {
		width: 300px;
		margin: 0 auto;
	}
	.hero-section-muitas .muitas-titulo h1 {
		text-align: center;
	}
}


/*=========================BREADCRUMBS===============================
============================================================================
==========================================================================*/
.sa-breadcrumbs {

    text-align: center;
    margin: 10px 0 40px;
    padding: 10px;

    color: #cc965e;
    font-size: 0.7rem;

    border-bottom: 1px solid #cc965e;
    border-top: 1px solid #cc965e;
}

.sa-breadcrumbs a {
    color: #cc965e;
    text-decoration: none;
}

.sa-breadcrumbs a:hover {
    text-decoration: underline;
}

.sa-breadcrumbs .divider {
    margin: 0 6px;
}

.sa-breadcrumbs .current {
    color: #ffffff;
}

/* =========================================================
   FORMULÁRIO — IMPRENSA
   ========================================================= */

/* Garante box-sizing consistente */
.imprensa-form-section {
    box-sizing: border-box;
}

/* Wrapper principal, centralizado */
.imprensa-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .imprensa-form-section {
		display: block !important;
        justify-content: center;
        padding-left: 0px !important;
        padding-right: 0px !important;
        text-align: center !important;
	}
.imprensa-container {
	display: block !important;
        justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 20px;
}
}

.florzinha {
	display: flex;
	justify-content: center;
	padding: 20px;
}

.florzinha img {
	width: 30px;
	height: auto;
}
.textos-longos-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 10px 20px;
}

.textos-longos h2 {
  margin-top: 32px;
  font-size: 1.4rem;
  font-weight: 700;
	color: #cc965e;
}

.textos-longos p {
  margin: 16px 0;
  line-height: 1.7;
  color: #f4f1eb;
}

.textos-longos ul {
  margin: 12px 0 20px 20px;
  line-height: 1.7;color: #f4f1eb;
}



/*=========================PÁGINA PRÊT-A-PORTER=============================
============================================================================
==========================================================================*/





/*-----Seção Vestidos pret------*/
.vestidos-pret {
	padding: 25px;
	justify-content: center;
}

/*------seção Vestidos de noiva prêt-à-porter com alma artesanal--------*/
.secao-vestidos-ppa {
    padding: 60px 0;
}

.secao-vestidos-ppa .linha-divisoria {
    width: 100%;
    height: .8px;
    background-color: #f4f1eb;
    margin-bottom: 20px;
}

.vestidos-ppa-container {
    width: 70%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vestidos-ppa-container h3 {
    color: #cc965e;
    font-size: .9rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.vestidos-ppa-container p {
    color: #f4f1eb;
    font-size: .7rem;
    line-height: 1.8;
    margin-bottom: 40px;
}


/* RESPONSIVO — Colunas empilham em telas menores */
@media (max-width: 900px) {
    .vestidos-ppa-container {
        grid-template-columns: 1fr;
    }
}
/* ==============================
   PRÊT-A-PORTER LINHA SIGNATURE
============================== */

.pret-a-porter-linha-signature {
  
    padding: 20px 20px;
	margin: 20px 0 20px 0;
}

.pret-a-porter-linha-signature-grid {
    display: grid;
	background: linear-gradient(90deg, rgba(71,50,31,1) 5%, rgba(13, 6, 16, 1) 35%);
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
	
}

/* Texto */
.pret-a-porter-linha-signature-text {
	text-align: center;
	padding: 12px;
}
.pret-a-porter-linha-signature h2 {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
	color: #cc965e;
}

.pret-a-porter-linha-signature-grid .intro-signature {
  width: 110px;
  max-width: 80%;
  display: block;
  margin: 15px auto 15px auto;   /* <- GARANTE CENTRALIZAÇÃO */
}

.pret-a-porter-linha-signature-text h2 span {
    display: block;
    font-weight: normal;
	color: #f4f1eb;
}

.pret-a-porter-linha-signature-text p {
    font-size: .8rem;
    line-height: 1.8;
    margin-bottom: 30px;
	color: #f4f1eb;
}

/* Imagem */
.pret-a-porter-linha-signature-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
	
}

.pret-a-porter-linha-signature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==============================
   RESPONSIVO
============================== */

@media (max-width: 900px) {
	
.pret-a-porter-linha-signature {
    padding: 00px 00px;
	margin: 20px 0 20px 0;
	}
	
    .pret-a-porter-linha-signature-grid {
        grid-template-columns: 1fr;
		display: flex;
		flex-direction: column-reverse;
        gap: 40px;
		background: linear-gradient(0deg, rgba(71,50,31,1) 5%, rgba(13, 6, 16, 1) 35%);
    }

    .linha-signature-text {
        order: 1;
		padding-bottom: 60px;
    }

    .linha-signature-img {
		order: 2;
		padding: 0;
        overflow: hidden;
    }
	.linha-signature-img img {
		object-fit: cover;
        aspect-ratio: 3 / 4;
	}
}


/*===========================PÁGINA FAQ=====================================
============================================================================
==========================================================================*/


/* SECTION WRAPPER */
.samuell-faq {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    font-family: "Cormorant Garamond", serif;
}

.faq-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #12221a;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.accordion-content p {
	color: #f4f1eb;
}

/* ACCORDION */
.faq-accordion {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid #dcdcdc;
    padding: 16px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 20px;
    color: #12221a;
    text-align: left;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 26px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

/* HIDDEN ANSWERS */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 10px 0 5px 0;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.faq-answer a {
    color: #f4f1eb;
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .faq-title { font-size: 32px; }
    .faq-question { font-size: 18px; }
    .faq-answer p { font-size: 16px; }
}
/*-----página ateliers--------*/
.secao-ateliers-interno {
    display: flex;
    justify-content: center;
    padding: 40px 20px; /* padding simétrico */
}



/*===========================PÁGINA ENTRAR==================================
============================================================================
==========================================================================*/
/* --- SECTION BASE --- */
.entrar-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px; /* padding simétrico */ 
}

.entrar-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;

    position: relative;
}

/* --- COLUNAS --- */
.entrar-col {
    width: 50%;
}

.entrar-col h2 {
    font-size: 18px;
    font-weight: 600;
	color: #cc965e;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.entrar-sub {
    font-size: 14px;
	color: #f4f1eb ;
    margin-bottom: 10px;
}

.entrar-info-campos {
    font-size: 11px;
	color: #f4f1eb ;
    opacity: 0.8;
    margin-bottom: 20px;
}


/* --- DIVISÓRIA --- */
.entrar-divider {
    width: 1px;
    background: #cc965e;
    align-self: stretch;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .entrar-container {
        flex-direction: column;
    }

    .entrar-col {
        width: 100%;
    }

    .entrar-divider {
        display: none;
    }

    .entrar-left,
    .entrar-right {
        padding-bottom: 40px;
        border-bottom: 1px solid #cc965e;
    }

    .entrar-right {
        padding-top: 40px;
        border-bottom: none;
    }
}

/* =========================================================
   Atelier – 404
   ========================================================= */

.atelier-404 {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

/* Código 404 */
.atelier-404__codigo {
  font-size: clamp(140px, 25vw, 320px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #f4f1eb;
  line-height: .2;
	margin-top: 160px;
}

/* Link */
.atelier-404__link {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cc965e;
  text-decoration: none;
  position: relative;
  padding-bottom: 26px;
}

/* Underline sutil */
.atelier-404__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0.6;
}

/* Hover elegante */
@media (hover: hover) {
  .atelier-404__link:hover::after {
    opacity: 1;
  }
}

//* =========================================================
   Atelier – Search (evoluído)
   ========================================================= */

.atelier-search {
  padding: 80px 32px;
}

/* Header */
.atelier-search__header {
  max-width: 1100px;
  margin: 0 auto 80px;
  text-align: center;
}

.atelier-search__titulo {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #cc965e;
}

.atelier-search__titulo span {
  color: #f4f1eb;
}

/* Conteúdo */
.atelier-search__conteudo {
  max-width: 1100px;
  margin: 0 auto;
}

/* Lista */
.atelier-search__lista {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Item */
.atelier-search__item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}

/* Thumbnail */
.atelier-search__thumb img {
  width: 100%;
  height: auto;
  display: block;background: linear-gradient(-90deg, rgba(204, 150, 93, 1) 50%, rgba(244, 241, 235, 0) 50%);
    padding: 0px 6px 6px 0px;
}

/* Texto */
.atelier-search__texto {
  max-width: 520px;
}

/* Label */
.atelier-search__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f4f1eb;
  display: inline-block;
  margin-bottom: 12px;
}

/* Título */
.atelier-search__item-titulo {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 12px;
}

.atelier-search__item-titulo a {
  color: #cc965e;
  text-decoration: none;
}

.atelier-search__item-titulo a:hover {
  color: #cc965e;
}

/* Excerpt */

.atelier-search__texto p {
  text-decoration: none;
  color: #f4f1eb;
	font-size: 12px;
	line-height: 1.7em;
}

/* =========================================================
   Paginação
   ========================================================= */

.navigation.pagination {
  margin-top: 80px;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 24px;
}

.navigation.pagination a,
.navigation.pagination span {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f4f1eb;
  text-decoration: none;
}

.navigation.pagination .current {
  color: #cc965e;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 768px) {

  .atelier-search {
    padding: 80px 24px;
  }

  .atelier-search__item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .atelier-search__titulo {
    font-size: 32px;
  }

  .atelier-search__item-titulo {
    font-size: 22px;
  }
}
/* =========================================================
   Search – Estado vazio
   ========================================================= */

.atelier-search__vazio {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.atelier-search__vazio h2 {
  font-size: 28px;
  font-weight: 300;
  color: #cc965e;
  margin-bottom: 16px;
}

.atelier-search__vazio p {
  font-size: 15px;
  line-height: 1.7;
  color: #f4f1eb;
  opacity: 0.85;
  margin-bottom: 20px;
}

.atelier-search__vazio strong {
  color: #cc965e;
  font-weight: 400;
}

/* Link voltar */
.atelier-search__voltar {
  display: inline-block;
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cc965e;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.atelier-search__voltar::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0.6;
}

.atelier-search__voltar:hover::after {
  opacity: 1;
}
/* =========================================================
   Atelier – Search Form
   ========================================================= */

.atelier-searchform {
  max-width: 420px;
  margin: 32px auto 0;
  display: flex;
  border-bottom: 1px solid rgba(244, 241, 235, 0.4);
}

/* Input */
.atelier-searchform__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 15px;
  color: #f4f1eb;
  letter-spacing: 0.02em;
}

.atelier-searchform__input::placeholder {
  color: rgba(244, 241, 235, 0.5);
}

.atelier-searchform__input:focus {
  outline: none;
}

/* Botão */
.atelier-searchform__button {
  background: none;
  border: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cc965e;
  cursor: pointer;
  padding-left: 16px;
}

.atelier-searchform__button:hover {
  opacity: 0.8;
}

/* ===============================
   SECTIONS – PÁGINA DE OBRIGADO
================================ */

.obrigado-colunas {
  padding: 2rem 2rem;
}

.obrigado-colunas-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
	justify-content: center;
  gap: 4rem;
}

/* alternância no desktop */
.invertido-desktop {
  flex-direction: row-reverse;
}

/* imagem */
.obrigado-colunas-imagem img {
  width: 100%;
  height: auto;
  display: block;
}

/* texto */
.obrigado-colunas-texto {
  max-width: 480px;
	display: grid;
	align-items: center;
	justify-content: center;
	
}

.obrigado-colunas-texto h2 {
  color: #cc965e;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.obrigado-line-detail {
	width: 200px;
	height: auto;
	margin: 0 auto;
	justify-content: center;
}


.obrigado-colunas-texto p {
  color: #f4f1eb;
  font-size: .8rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
	text-align: center;
}

/* CTA */
.obrigado-button {
  display: inline-flex;
  align-items: center;
	margin: 0 auto;
  gap: 8px;
	color: #cc965e;
  background: rgba(0,0,0,0);;
  border: 1px solid #cc965e;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
 font-weight: 500;
  text-transform: uppercase;
  padding: 8px 22px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.obrigado-button:hover {
  background: #cc965e;
  color: #12221a;
}

.obrigado-button i {
  font-size: 1rem;
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

  .obrigado-colunas-inner,
  .invertido-desktop {
    flex-direction: column;
    gap: 2.5rem;
  }

  .obrigado-colunas {
    padding: 4rem 1.5rem;
  }

  .obrigado-colunas-texto {
    max-width: 100%;
  }

}
/* ===============================
   COOKIE NOTICE
================================ */

.cookie-notice {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: #111;
  color: #f4f1eb;
  padding: 1.5rem 2rem;
  display: none; /* 👈 começa escondido */
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 9999;
  font-size: 0.85rem;
}


.cookie-notice a {
  color: #cc965e;
  text-decoration: none;
}

.cookie-notice button {
  background: none;
  border: 1px solid #cc965e;
  color: #cc965e;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
	transition: background .4s;
}
.cookie-notice button:hover {
	background: #cc965e;
	color: #12221a;}

/* Mobile */
@media (max-width: 768px) {
  .cookie-notice {
    flex-direction: column;
    text-align: center;
  }
}
.cookie-notice {
  transition: opacity 0.3s ease, transform 0.3s ease;
}




/*=========================PÁGINA MINHA CONTA===============================
============================================================================
==========================================================================*/
/* BASE GERAL */
.minha-conta-section {
    padding: 60px 20px;
}

.mc-container {
    max-width: 900px;
    margin: 0 auto;
}

/* TÍTULOS */
.mc-title {
    background: #cc965e;
    color: #12221a;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    margin-bottom: 0px;
    text-align: center;
}

/* BLOCOS */
.mc-bloco {
    border: 1px solid #cc965e;
    padding: 10px;
    margin-bottom: 35px;
}

/* LINKS INTERNOS */
.mc-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
	border: 1px solid #cc965e;
	padding: 10px;
	margin-bottom: 0px;
}

.mc-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #f4f1eb ;
    text-decoration: none;
    font-weight: 300;
}

.mc-links a i {
    color: #cc965e;
    font-size: 20px;
}

/* SECTION ÚLTIMOS FAVORITOS */
.ultimos-favoritos .mc-bloco {
    padding: 10px;;
	
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .mc-bloco {
        padding: 10px;
    }

    .mc-title {
        font-size: 12px;
    }

    .mc-links a {
        font-size: 18px;
    }
}
/*===========================PÁGINA NOVIDADES===============================
============================================================================
==========================================================================*/
.parte-novidades {
    display: flex;
    justify-content: center;
    padding: 40px 70px; /* padding simétrico */
	}
@media (max-width: 780px) {
	.parte-novidades {
		padding: 20px;
	}
}

/*=====================SINGLE VESTIDOS DE NOIVA=============================
============================================================================
==========================================================================*/
.sa-vestido-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    overflow: visible;
	padding: 25px;
	margin-bottom: 20px;
}
.sa-vestido-info {
	position: -webkit-sticky;
    position: sticky;
    top: 30px;
    align-self: start;
	padding: 10px;
}
.loguinho-content-vestidos {
	display: flex;
	justify-content: center;
	padding: 10px 10px 0px 10px;
	margin-bottom: 0px;
}
.loguinho-content-vestidos img {
	width: 20px;
	height: auto;
}
.sa-vestido-title {
	display: flex;
	justify-content: center;
	color: #cc965e;
	font-weight: 500;
	font-size: 36px;
	margin: 0;
}
.sa-vestido-by {
	display: flex;
	justify-content: center;
	color: #f4f1eb;
	font-size: 12px;
	margin-bottom: 20px;	
}
.sa-vestido-actions {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}
.sa-vestido-actions .share {
	display: flex;
	
}
.sa-vestido-actions .share p{
	font-size: 10px;
	color: #f4f1eb;
	padding-right: 10px;
}
.sa-vestido-actions .like {
	display: flex;
	
}
.sa-vestido-actions .like p{
	font-size: 10px;
	color: #f4f1eb;
	padding-right: 10px;
}
.single-vestidos_noiva .sa-breadcrumbs {
    text-align: center;
    margin: 5px 0 00px;
    padding: 10px;
    color: #cc965e;
    font-size: 0.7rem;

    border-bottom: 1px solid #cc965e;
    border-top: 1px solid #cc965e;
}
/* Accordion */
.sa-accordion {
  padding: 20px 0;
}

/* Item */
.sa-accordion-item {
  border-bottom: 1px solid rgba(205,150,94,.9);
}

/* Botão */
.sa-accordion-toggle {
  background: none;
  border: none;
  color: #cc965e;
  font-weight: 500;
  text-align: left;
  padding: 12px 0;
  width: 100%;
	font-family: "Playfair display", serif;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ícone */
.sa-accordion-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Conteúdo */
.sa-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* Conteúdo aberto */
.sa-accordion-item.active .sa-accordion-content {
  max-height: 600px; /* suficiente para textos longos */
}

/* Girar ícone */
.sa-accordion-item.active .sa-accordion-icon {
  transform: rotate(180deg);
}

/* Texto */
.sa-accordion-content p,
.sa-accordion-content ul {
  margin: 12px 0;
  color: #f4f1eb;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 2.2em;
}

@media (max-width: 768px) {

    .sa-vestido-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .sa-vestido-info {
        position: relative;   /* remove sticky */
        top: auto;
        order: 2;             /* vem depois da galeria */
    }

    .sa-vestido-gallery {
        order: 1;
    }

}
.sa-vestido-gallery {
    width: 100%;
    max-width: 620px;   /*  ESSENCIAL */

}

.sa-vestido-gallery img {
    display: block;
    width: 100%;
    height: auto;
margin-left: auto;
    margin-right: auto;
            /* teto real */
    object-fit: cover;
		margin-bottom: 2px;
	padding: 0;
	
}

/*---SEÇÃO VEJA OUTROS VESTIDOS*/
.sa-veja-mais {
    margin-bottom: 20px;
	padding: 25px;
}

.sa-veja-mais h2 {
	margin: 0 auto;
	color: #cc965e;
	font-size: 16px;
	text-align: center;
	padding: 25px;
}
.veja-mais-detalhe {
	display: flex;
	justify-content: center;
	margin-bottom: 25px;
}
.veja-mais-detalhe img {
	margin: 0 auto;
	justify-content: center;
	padding: 10px;
	width: 180px;
	height: auto;
}
@media (max-width: 768px) {
	.sa-veja-mais {
		margin: 0 auto;
	} 
}

/*=========================PÁGINA NOIVAS===============================
============================================================================
==========================================================================*/

.detalhezinho {
	display: flex;
	justify-content: center;
	margin: 30px;
}
.detalhezinho img {
	width: 200px;
	height: auto;
}
/* ==============================
   NOIVAS INTRO
============================== */

.noivas-intro {
  padding: 120px 50px 30px;
  
	
}

.noivas-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
	gap: 20px;
	overflow-x: hidden;
}
.noivas-intro-image {
  display: flex;
  justify-content: flex-end; /* empurra a imagem para a direita */
}

.noivas-intro-image img {
  width: 80%;
  max-width: 410px;
  height: auto;
  display: block;
  background: linear-gradient(90deg, rgba(204, 150, 93, 1) 50%, rgba(244, 241, 235, 0) 50%);
   padding: 6px 0px 0px 6px;
}
.noivas-intro-content {
  position: relative;
  margin-top: 120px;
	
}
.noivas-intro-name {
  display: block;
  font-size: 11px;
	color: #f4f1eb;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.noivas-intro-title {
  position: relative;
  font-size: clamp(90px, 12vw, 160px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #f4f1eb;
  margin: 0 0 -60px;

  /* AQUI A MÁGICA */
  transform: translate(-18%, -25%);
  z-index: 2;
  pointer-events: none;
}
.noivas-intro-text {
  font-size: 12px;
	color: #f4f1eb;
  line-height: 1.8;
  max-width: 440px;
}

/*RESPONSIVO*/
@media (max-width: 768px) {

  .noivas-intro {
    padding: 20px 20px;
	  
  }

  .noivas-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
	.noivas-intro-image {
    justify-content: center; /* centraliza em mobile */
		margin-bottom: -190px;
  }
 	.noivas-intro-name {
      margin-bottom: -26px;
	}

  .noivas-intro-title {
    transform: none;
    font-size: 64px;
    margin: 12px 0 0px;
	  
  }
	.noivas-intro-title {
		color: #f4f1eb;
	}

  .noivas-intro-content {
    max-width: 100%;
  }

  .noivas-intro-text {
    max-width: 100%;
  }
}

/* ==============================
   NOIVAS PRÊT-À-PORTER
============================== */

.pret-a-porter {
  padding: 30px 5vw 30px;
}

.pret-a-porter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.pret-a-porter-left img {
  width: 100%;
  height: auto;
  display: block;
	background: linear-gradient(90deg, rgba(204, 150, 93, 1) 50%, rgba(244, 241, 235, 0) 50%);
   padding: 6px 0px 0px 6px;
	object-fit: cover;
	aspect-ratio: 9/11;
}
.pret-a-porter-right img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
	background: linear-gradient(90deg, rgba(204, 150, 93, 1) 50%, rgba(244, 241, 235, 0) 50%);
   padding: 6px 0px 0px 6px;
	object-fit: cover;
}
.pret-a-porter-text h2 {
  font-size: 14px;
  letter-spacing: 0.25em;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #f4f1eb;
}

.pret-a-porter-text p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 360px;
  color: #f4f1eb;
}
.pret-a-porter-link {
  align-self: flex-start;
    padding: 6px 20px;
    color: #cc965e;
	font-size: 10px;
	background-color: transparent;
    text-decoration: none;
    transform-origin: left;
    transition: transform 0.3s ease, background 0.3s ease;
	border: 2px solid #cc965e;
	transition: background-color .4s;
}
.pret-a-porter-link:hover {
	background-color: #cc965e;
	color: #12221a;
}

@media (max-width: 768px) {

  .pret-a-porter {
    padding: 80px 6vw;
  }

  .pret-a-porter-grid {
    grid-template-columns: 1fr;
	  display: flex;
	  flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }
.pret-a-porter-left img {
	aspect-ratio: 1/1;
}
	.pret-a-porter-right img {
	aspect-ratio: 1/1;
}
  .pret-a-porter-text p {
    max-width: 100%;
  }
}



/* ==============================
   LINHA SIGNATURE
============================== */
.noivas-signature {
  position: relative;
  margin: 50px 0 50px!important;

  max-width: 100%;

  padding: 45px;
  min-height: 99vh;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  background-size: cover;
  background-position: center;

  overflow-x: hidden; /* ESSENCIAL */
}
.noivas-signature-content {
  position: relative;
  z-index: 2;
  max-width: 40%;
  margin-left: 8%;
  color: #fff;
  text-align: center;
}
.noivas-signature-assinatura { 
	width: 130px; height: auto; 
} 
.noivas-signature-entrada { 
	font-size: 1rem; 
} 
.noivas-signature-text { 
	font-size: .8rem; 
	line-height: 1.7; 
	color: #f4f1eb; 
	margin-bottom: 20px; 
}
.noivas-signature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.noivas-signature-button { 
	display: inline-flex; 
	align-items: center; 
	gap: 8px; 
	color: #cc965e; 
	background-color: transparent; 
	border: 1px solid #cc965e;  
	font-family: 'Poppins', sans-serif; 
	font-size: 11px; 
	font-weight: 500; 
	text-transform: uppercase; 
	padding: 8px 22px; 
	text-decoration: none; 
	transition: background 0.3s ease; 
} 
.noivas-signature-button:hover { 
	background-color: #cc965e; 
	color: #12221a; 
} 
.noivas-signature-button i { 
	font-size: 1rem; 
}
/*RESPONSIVO*/
@media (max-width: 768px) {

  .noivas-signature {
    justify-content: center;
    align-items: flex-end;
    padding: 15% 5% 10%;
  }

  .noivas-signature-content {
    max-width: 90%;
    margin-left: 0;
    text-align: center;
  }
}


/* ==============================
   NOSSAS NOIVAS
============================== */

.nossas-noivas {
 
    padding: 40px 20px;;
}

.nossas-noivas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

/* Imagens */
.nossas-noivas-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(44, 44, 44, 0) 50%);
    padding: 6px 0px 0 6px;
}

.nossas-noivas-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	filter: grayscale(100%);
}

/* Texto */
.nossas-noivas-text h2 {
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
	color: #cc965e;
}

.nossas-noivas-text p {
    font-size: .8rem;
    line-height: 1.6;
    margin-bottom: 30px;
	color: #f4f1eb;
}

/* Link */
.nossas-noivas-link {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
	color: #cc965e;
    border: 1px solid #cc965e;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.nossas-noivas-link:hover {
    color: #12221a;
	background-color: #cc965e;
}

/* ==============================
   RESPONSIVO
============================== */

@media (max-width: 768px) {
	.nossas-noivas {
		padding: 5px;
	}
	
    .nossas-noivas-grid {
        display: flex;
        flex-direction: column-reverse;
		justify-content: center;
		padding: 10px;
    }

    .nossas-noivas-text {
        text-align: center;
		padding: 10px;
		width: 100%;
		
    }
}

/*=======================PÁGINA NOSSAS NOIVAS===============================
============================================================================
==========================================================================*/

.nossas-noivas-grid {
	padding: 40px 60px;
}

/*=========================PÁGINA EVENING===============================
============================================================================
==========================================================================*/

.detalhezinho {
	display: flex;
	justify-content: center;
	margin: 30px;
}
.detalhezinho img {
	width: 200px;
	height: auto;
}
/* ==============================
   EVENING INTRO
============================== */

.evening-intro {
  padding: 120px 50px 30px;
  
	
}

.evening-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
	gap: 20px;
	overflow-x: hidden;
}
.evening-intro-image {
  display: flex;
  justify-content: flex-end; /* empurra a imagem para a direita */
}

.evening-intro-image img {
  width: 80%;
  max-width: 410px;
  height: auto;
  display: block;
  background: linear-gradient(90deg, rgba(204, 150, 93, 1) 50%, rgba(244, 241, 235, 0) 50%);
   padding: 6px 0px 0px 6px;
}
.evening-intro-content {
  position: relative;
  margin-top: 120px;
	
}
.evening-intro-name {
  display: block;
  font-size: 11px;
	color: #f4f1eb;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.evening-intro-title {
  position: relative;
  font-size: clamp(50px, 12vw, 100px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #f4f1eb;
  margin: 0 0 -20px;

  /* AQUI A MÁGICA */
  transform: translate(-18%, -25%);
  z-index: 2;
  pointer-events: none;
}
.evening-intro-text {
  font-size: 12px;
	color: #f4f1eb;
  line-height: 1.8;
  max-width: 440px;
}

/*RESPONSIVO*/
@media (max-width: 768px) {

  .evening-intro {
    padding: 20px 20px;
	  
  }

  .evening-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
	.evening-intro-image {
    justify-content: center; /* centraliza em mobile */
		margin-bottom: -190px;
  }
 	.evening-intro-name {
      margin-bottom: -26px;
	}

  .evening-intro-title {
    transform: none;
    font-size: 64px;
    margin: 12px 0 0px;
	  
  }
	.evening-intro-title {
		color: #f4f1eb;
	}

  .evening-intro-content {
    max-width: 100%;
  }

  .evening-intro-text {
    max-width: 100%;
  }
}
/* ===============================
   EVENING – STATEMENT
================================ */

.evening-statement {
  padding: 8rem 2rem 0;
  text-align: center;
  margin-bottom: -6rem; /* invade a próxima section */
  position: relative;
  z-index: 2;
}

.evening-statement h1 {
  color: #f4f1eb;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto;
}
/* ===============================
   EVENING – IMAGE HIGHLIGHT
================================ */

.evening-image-highlight {
  background-color: #4a1f1f;
  padding: 10rem 2rem;
  text-align: center;
}

.evening-image-highlight img {
  max-width: 720px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 3rem;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(30, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

.evening-image-highlight p {
  color: #cc965e;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
/* ===============================
   EVENING – PROCESS
================================ */

.evening-process {
  padding: 80px 10px;
}

.evening-process-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.evening-process-text h2 {
  color: #cc965e;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.evening-process-text p {
  color: #f4f1eb;
  font-size: .7rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.evening-process-text p:last-child {
  margin-bottom: 0;
}

.evening-process-image img {
  width: 100%;
  height: auto;
  display: block;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}
@media (max-width: 768px) {
  .evening-process {
    padding: 6rem 1.5rem;
  }

  .evening-process-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .evening-process-image {
    order: -1;
  }

  .evening-process-text h2 {
    font-size: 1.6rem;
  }
}
/* ===============================
   EVENING – ESTÉTICA AUTORAL
================================ */

.evening-aesthetic {

  padding: 50px 10px;
}

.evening-aesthetic-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.evening-aesthetic-image img {
  width: 100%;
  height: auto;
  display: block;
	object-fit: cover;
	aspect-ratio: 1/1;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

/* CONTEÚDO */
.evening-aesthetic-content {
  position: relative;
  z-index: 2;
	padding: 10px;
}

/* TÍTULO “PUXADO” */
.evening-aesthetic-content h2 {
  color: #cc965e;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 5rem;
	font-weight: 200;

  position: relative;
  top:-10rem;
  left: -6rem; /* AQUI acontece a mágica */
}

/* TEXTO */
.evening-aesthetic-content p {
  color: #f4f1eb;
  font-size: .7rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
	max-width: 220px;
}

.evening-aesthetic-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .evening-aesthetic {
    padding: 6rem 1.5rem;
  }

  .evening-aesthetic-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .evening-aesthetic-content h2 {
    font-size: 2.8rem;
    top: -40; /* remove o efeito */
	left: 0;
	  margin-bottom: -8rem;
  }
	.evening-aesthetic-content p {
		max-width: 420px;
	}
}

/* ===============================
   EVENING – SECTION FINAL
================================ */

.evening-final {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 10rem 5vw;
}

.evening-final-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* COLUNA VAZIA */
.evening-final-spacer {
  min-height: 1px;
}

/* CONTEÚDO */
.evening-final-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.evening-final-content h2 {
  color: #f4f1eb;
  font-size: 3rem;
  line-height: 1.1;
  max-width: 520px;
}

.evening-final-sub {
  color: #f4f1eb;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  max-width: 420px;
}

.evening-final-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
	object-fit: cover;
	aspect-ratio: 1/1;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .evening-final {
    padding: 16rem 1.5rem;
  }

  .evening-final-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .evening-final-content h2 {
    font-size: 1.8rem;
	  margin-bottom: 0;
  }

  .evening-final-image img {
    max-width: 100%;
  }
}
/*=========================PÁGINA LINHA SIGNATURE===========================
============================================================================
==========================================================================*/

/* ===============================
   LINHA SIGNATURE – INTRO
================================ */

.signature-intro {
  padding: 10px;
  text-align: center;
}

.signature-intro-inner {
  max-width: 820px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* IMAGEM TOPO */
.signature-intro-image img {
  width: 100%;
  height: auto;
  display: block;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

/* TÍTULO */
.signature-intro-title {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-weight: 400;
	color: #cc965e;
	margin-bottom: -50px;
}

/* ASSINATURA */
.signature-intro-sign img {
  width: 120px;
  height: auto;
  display: block;
	margin-bottom: -35px;
}

/* TEXTO */
.signature-intro-text {
  max-width: 380px;
}

.signature-intro-text p {
  font-size: .7rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
	color: #f4f1eb;
}

/* MOBILE */
@media (max-width: 768px) {
  .signature-intro {
    padding: 5rem 1.5rem;
  }

  .signature-intro-title {
    font-size: 1.8rem;
  }

  .signature-intro-sign img {
    width: 140px;
  }
}

/* ===============================
   LINHA SIGNATURE – COMPOSIÇÃO
================================ */

.signature-composition {
  padding: 10rem 5vw;
}

.signature-composition-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 700px;
}

/* BASE */
.signature-img {
  position: absolute;
}

.signature-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* POSIÇÕES */

/* A – centro */
.signature-a {
  width: 180px;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* B – direita, maior */
.signature-b {
  width: 270px;
  top: 40px;
  left: calc(42% + 200px);
  z-index: 1;
}

/* D – abaixo de A */
.signature-d {
  width: 280px;
  top: 410px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* C – esquerda de D, menor */
.signature-c {
  width: 200px;
  top: 408px;
  left: calc(55% - 420px);
  z-index: 0;
}

/* E – direita de D, menor */
.signature-e {
  width: 110px;
  top: 409px;
  left: calc(32% + 360px);
  z-index: 0;
}
@media (max-width: 768px) {

  .signature-composition {
    padding: 6rem 1.5rem;
  }

  .signature-composition-inner {
    position: static;
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
  }

  .signature-img {
    position: relative;
    flex: 0 0 auto;
  }

  .signature-a { width: 220px; }
  .signature-b { width: 300px; }
  .signature-c { width: 160px; }
  .signature-d { width: 260px; }
  .signature-e { width: 140px; }

  /* remove offsets desktop */
  .signature-a,
  .signature-b,
  .signature-c,
  .signature-d,
  .signature-e {
    top: auto;
    left: auto;
    transform: none;
  }
}
@media (max-width: 768px) {

  .signature-composition {
    padding: 5rem 1.5rem;
  }

  .signature-composition-inner {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .signature-img {
    position: relative;
  }

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

  /* ---------- PRIMEIRA LINHA ---------- */
  .signature-a {
    grid-column: 1 / 2;
    width: 100%;
  }

  .signature-b {
    grid-column: 2 / 3;
    width: 100%;
  }

  /* ---------- SEGUNDA LINHA ---------- */
  .signature-c {
    grid-column: 1 / 2;
    width: 100%;
  }

  .signature-d {
    grid-column: 2 / 3;
    width: 80%;
	  margin-top: -3rem;
  }

  /* ---------- TERCEIRA LINHA ---------- */
  .signature-e {
    grid-column: 2 / 3;
    width: 40%;
    justify-self: start;
    margin-top: -8rem;
  }

  /* limpa offsets do desktop */
  .signature-a,
  .signature-b,
  .signature-c,
  .signature-d,
  .signature-e {
    top: auto;
    left: auto;
    transform: none;
  }
}

/* ===============================
   LINHA SIGNATURE – ALTA COSTURA
================================ */

.signature-couture {
  padding: 8rem 5vw;
}

.signature-couture-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* IMAGEM LARGA */
.signature-couture-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

/* CONTEÚDO EM 3 COLUNAS */
.signature-couture-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* TÍTULO */
.signature-couture-title {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 400;
	color: #cc965e;
}

/* PARÁGRAFOS */
.signature-couture-text {
  font-size: .7rem;
  line-height: 1.8;
  max-width: 420px;
	color: #f4f1eb;
}

/* MOBILE */
@media (max-width: 768px) {
  .signature-couture {
    padding: 5rem 1.5rem;
  }

  .signature-couture-image img {
    margin-bottom: 1rem;
  }

  .signature-couture-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .signature-couture-title {
    font-size: 1.6rem;
	  margin-bottom: -10px;
  }
}
/* ===============================
   LINHA SIGNATURE – PROCESSO
================================ */

.signature-process {
  padding: 8rem 5vw;
  justify-content: center;
}

.signature-process-inner {
  max-width: 1400px;
  margin: 0 auto;
padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* TEXTO */
.signature-process-text h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
	color: #cc965e;
}

.signature-process-text p {
  font-size: .7rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 520px;
	color: #f4f1eb;
}

/* VÍDEO */
.signature-process-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
	aspect-ratio: 3/4;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .signature-process {
    padding: 5rem 1.5rem;
  }

  .signature-process-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* vídeo acima do texto */
  .signature-process-video {
    order: -1;
  }

  .signature-process-text h2 {
    font-size: 1.6rem;
  }
}
/* ===============================
   LINHA SIGNATURE – ESSÊNCIA
================================ */

.signature-essence {
  background-color: #cc965e;
  padding: 10rem 1.5rem 2rem;
  text-align: center;
}

.signature-essence-inner {
  max-width: 820px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* IMAGEM */
.signature-essence-image img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
	object-fit: cover;
	aspect-ratio: 1/1;
}

/* TEXTO */
.signature-essence-text {
  color: #1e1e1e;
  font-size: .8rem;
  line-height: 1.8;
  max-width: 410px;
}

/* MOBILE */
@media (max-width: 768px) {
  .signature-essence {
    padding: 6rem 1.5rem;
  }
}

/* ===============================
   LINHA SIGNATURE – FINAL
================================ */

.signature-final {
  padding: 8rem 5vw;
}

.signature-final-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* IMAGEM */
.signature-final-image img {
  width: 100%;
  height: auto;
  display: block;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

/* CONTEÚDO */
.signature-final-content h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
	color: #cc965e;
}

.signature-final-content p {
  font-size: .7rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 520px;
	color: #f4f1eb;
}

/* MOBILE */
@media (max-width: 768px) {
  .signature-final {
    padding: 5rem 1.5rem;
  }

  .signature-final-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* imagem acima */
  .signature-final-image {
    order: -1;
  }
	.signature-final-image img {
		object-fit: cover;
		aspect-ratio: 3/4;
	}
	
  .signature-final-content h2 {
    font-size: 1.6rem;
  }
}
/*=========================PÁGINA A MARCA===================================
============================================================================
==========================================================================*/


/* ===============================
   A MARCA – INTRO
================================ */

.brand-intro {
  padding: 10px 20px;
  text-align: center;
}

.brand-intro-inner {
  max-width: 820px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

/* TEXTO */
.brand-intro-text {
  font-size: .7rem;
  line-height: 1.9;
  max-width: 680px;
	color: #f4f1eb;
}

/* IMAGEM */
.brand-intro-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .brand-intro {
    padding: 6rem 1.5rem;
  }

  .brand-intro-inner {
    gap: 3rem;
  }
}
/* ===============================
   A MARCA – VALORES
================================ */

.brand-values {
  padding: 10px 20px;
  text-align: center;
}

.brand-values-inner {
  max-width: 820px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* TÍTULO */
.brand-values-title {
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 400;
	color: #cc965e;
}

/* TEXTO */
.brand-values-text {
  font-size: .7rem;
  line-height: 1.9;
  max-width: 700px;
	color: #f4f1eb;
}

/* MOBILE */
@media (max-width: 768px) {
  .brand-values {
    padding: 6rem 1.5rem;
  }

  .brand-values-title {
    font-size: 1.5rem;
  }
}
/* ===============================
   A MARCA – MANIFESTO FINAL
================================ */

.brand-manifesto {
  padding: 10px 20px 20px;
  text-align: center;
}

.brand-manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}

.brand-manifesto-text {
  font-size: .7rem;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
	color: #f4f1eb
}

/* MOBILE */
@media (max-width: 768px) {
  .brand-manifesto {
    padding: 6rem 1.5rem;
  }
}
/*=========================PÁGINA SOBRE===================================
============================================================================
==========================================================================*/

/* ===============================
   SOBRE – CRIADOR
================================ */

.about-creator {
  padding: 10px 20px;
  text-align: center;
}

.about-creator-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-creator-title {
  margin-bottom: 2.5rem;
	color: #cc965e;
}

.about-creator-text {
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.9;
	color: #f4f1eb;
	font-size: .7rem;
}

.about-creator-image img {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  display: block;
	background: linear-gradient(90deg, rgba(204,150,93,1) 50%, rgba(244, 241, 235,0) 50%);
    padding: 6px 0px 0 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-creator {
    padding: 10px 20px;
  }

  .about-creator-text {
    margin-bottom: 3rem;
  }
}
/* ===============================
   SOBRE – VOCAÇÃO
================================ */

.about-vocation {
  padding: 10px 20px;
  text-align: center;
}

.about-vocation-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-vocation-title {
  margin-bottom: 2.5rem;
	color: #cc965e;
}

.about-vocation-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
	color: #f4f1eb;
	font-size: .7rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-vocation {
    padding: 10px 20px;;
  }
}
/* ===============================
   SOBRE – OLHAR DA MARCA
================================ */

.about-vision {
  padding: 10px 20px;
  text-align: center;
}

.about-vision-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-vision-title {
  margin-bottom: 2.5rem;
	color: #cc965e;
}

.about-vision-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
	color: #f4f1eb;
	font-size: .7rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-vision {
    padding: 10px 20px;
  }
}
/* ===============================
   SOBRE – ASPAS
================================ */

.about-quote {
  padding: 3rem 1.5rem;
}

.about-quote-inner {
  max-width: 360px; /* menor que as demais sections */
  margin: 0 auto;
  text-align: center;
}

.about-quote-text {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
	font-weight: 400;
  margin-bottom: 1.5rem;
	color: #cc965e;
}

.about-quote-author {
  display: block;
  margin-bottom: 3.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
	color: #f4f1eb;
	font-size: .9rem;
}

.about-quote-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-quote {
    padding: 3rem 1.5rem;
  }
}
/* ===============================
   EPÍLOGO DO SITE
================================ */

.site-epilogue {
  padding: 4rem 1.5rem 3rem;
}

.site-epilogue-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.site-epilogue-inner p {
  font-size: .7rem;
  line-height: 1.9;
  color: #f4f1eb;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-epilogue {
    padding: 2rem 1.5rem 3rem;
  }
}
/* ===============================
   SECTION AGENDAMENTO
================================ */

.agendamento-dinamico {
  padding: 40px 100px;
}
@media (max-width: 768px) {
.agendamento-dinamico {
  padding: 20px 20px;
	}}
/* ===============================
   MODAL
================================ */

.modal-agendamento {
  position: fixed;
  inset: 0;
  background: rgba(30,30,30,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 9999;
}

.modal-agendamento.ativo {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  padding: 0rem;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
	color: #cc965e;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
.booking current .booking-header {
	display: none !important;
}
