/*
Theme Name: Astra Child - Summer Staying
Template: astra
*/

:root{
  --blue:#1f6feb;
  --yellow:#f4c542;
  --dark:#10233c;
  --text:#22364d;
  --soft:#f4f7fb;
  --white:#ffffff;
  --radius:22px;
  --shadow:0 14px 35px rgba(16,35,60,.12);
}

html{scroll-behavior:smooth;}
body{margin:0;color:var(--text);}
img{max-width:100%;height:auto;display:block;}

.ss-container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.ss-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(16,35,60,.08);
  backdrop-filter:blur(8px);
}

.ss-header__row{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.ss-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--dark);
  text-decoration:none;
  font-weight:800;
  font-size:1.3rem;
}

.ss-brand img{
  width:70px;
  height:70px;
  object-fit:contain;
}

.ss-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.ss-nav a{
  color:var(--dark);
  text-decoration:none;
  font-weight:700;
}

.ss-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
}

.ss-btn:hover{transform:translateY(-1px);}
.ss-btn-blue{background:var(--blue);color:#fff;}
.ss-btn-yellow{background:var(--yellow);color:#111;}
.ss-btn-ghost{background:transparent;color:#fff;border:2px solid #fff;}

.ss-hero{
  position:relative;
  min-height:640px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

.ss-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(6,20,40,.62), rgba(6,20,40,.2));
}

.ss-hero-content{
  position:relative;
  z-index:1;
  padding:84px 0;
}

.ss-hero h1{
  margin:0 0 18px;
  color:#fff;
  font-size:clamp(2.2rem, 5vw, 4.4rem);
  line-height:1.02;
  max-width:720px;
}

.ss-hero p{
  margin:0 0 26px;
  color:rgba(255,255,255,.94);
  font-size:clamp(1rem, 1.8vw, 1.35rem);
  max-width:640px;
}

.ss-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.ss-section{padding:72px 0;}
.ss-soft{background:var(--soft);}

.ss-title{
  text-align:center;
  margin:0 0 34px;
  color:var(--dark);
  font-size:clamp(1.9rem, 3vw, 3rem);
}

.ss-title-gap{
  margin-top:56px;
}

.ss-grid{display:grid;gap:24px;}
.ss-grid-1{grid-template-columns:1fr;}
.ss-grid-2{grid-template-columns:repeat(2,1fr);}
.ss-grid-4{grid-template-columns:repeat(4,1fr);}

.ss-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  position:relative;
}

.ss-card-image{
  width:100%;
  height:250px;
  object-fit:cover;
}

.ss-card-body{padding:24px;}

.ss-card h3{
  margin:0 0 14px;
  color:var(--dark);
  font-size:1.8rem;
  line-height:1.08;
}

.ss-card p{margin:0 0 18px;line-height:1.6;}
.ss-card ul{margin:0 0 22px;padding-left:18px;}
.ss-card li{margin:0 0 10px;line-height:1.5;}

.ss-price{
  font-weight:800;
  color:var(--dark);
  margin:0 0 18px;
}

.ss-price-tag{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  background:#245db0;
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
}

.ss-review{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:20px;
  display:flex;
  align-items:center;
  gap:14px;
}

.ss-review img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.ss-review-score{
  margin-top:4px;
  font-weight:800;
  color:var(--dark);
}

.ss-footer{
  background:#ffffff;
  color:#10233c;
  padding:64px 0 80px;
  border-top:1px solid rgba(16,35,60,.08);
}

.ss-footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:28px;
}

.ss-footer h3,
.ss-footer h4{
  margin:0 0 14px;
  color:#10233c;
}

.ss-footer p{
  margin:0 0 10px;
  color:#425466;
}
.ss-payments{
  max-width:360px;
  width:100%;
}

.ss-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1000;
  background:#20c25e;
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  min-height:54px;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  box-shadow:0 18px 30px rgba(0,0,0,.2);
}

.ss-hide-mobile{display:inline-flex;}

@media (max-width: 1024px){
  .ss-grid-4{grid-template-columns:repeat(2,1fr);}
  .ss-footer-grid{grid-template-columns:1fr;}
}

@media (max-width: 768px){
  .ss-header__row{
    min-height:auto;
    padding:14px 0;
    flex-wrap:wrap;
  }

  .ss-brand img{
    width:46px;
    height:46px;
  }

  .ss-nav{
    width:100%;
    justify-content:center;
    gap:12px;
  }

  .ss-hide-mobile{display:none;}

  .ss-hero{
    min-height:560px;
  }

  .ss-hero-content{
    padding:56px 0;
  }

  .ss-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .ss-actions .ss-btn{
    width:100%;
    max-width:320px;
  }

  .ss-grid-2,
  .ss-grid-4{
    grid-template-columns:1fr;
  }

  .ss-card-image{
    height:220px;
  }

  .ss-card h3{
    font-size:1.5rem;
  }
}
.site-footer .site-primary-footer-wrap,
.site-below-footer-wrap,
.ast-footer-copyright,
.ast-small-footer-section {
  display: none !important;
}

.ss-hero{
  width:100vw;
  margin-left:calc(-50vw + 50%);
  border-radius:0;
}

.ss-container{
  width:min(1180px, calc(100% - 32px));
}

@media (max-width:768px){

  .ss-hero{
    width:100vw !important;
    max-width:100vw !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
    border-radius:0 !important;
  }

  .ss-hero-content{
    width:100% !important;
    padding:42px 24px !important;
  }
  
 }
  .site-content,
  .ast-container,
  .content-area,
  .site-main,
  .entry-content {
    padding-left:0 !important;
    padding-right:0 !important;
    margin-left:0 !important;
    margin-right:0 !important;
    max-width:100% !important;
  }

  .ss-payments{
    max-width:250px !important;
    width:100% !important;
  }
}

.ss-trust-line{
  text-align:center;
  margin-top:25px;
  margin-bottom:10px;
  font-size:16px;
  color:#334155;
}

.ss-trust-number{
  font-weight:800;
  color:#10233c;
  font-size:20px;
  margin-right:6px;
}

.ss-trust-countries{
  display:block;
  margin-top:6px;
  font-size:14px;
  color:#64748b;
}
.site-footer .site-primary-footer-wrap,
.site-below-footer-wrap,
.ast-footer-copyright,
.ast-small-footer-section {
  display: none !important;
}

.ss-site,
.site,
.site-content,
.ast-container,
.entry-content,
.inside-article {
  overflow-x: hidden !important;
}

/* Esconde header do tema Astra */
.ast-mobile-header-wrap,
.main-header-bar-wrap,
.ast-builder-grid-row-container,
.ast-primary-header-bar,
.ast-above-header-wrap,
.ast-below-header-wrap,
.ast-header-break-point .main-header-bar,
.site-header,
#masthead,
.ast-page-builder-template .entry-header,
.page .entry-header,
.ast-single-entry-banner {
  display: none !important;
}

@media (max-width: 768px) {
  .site-content,
  .ast-container,
  .content-area,
  .site-main,
  .entry-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }

  .ss-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    border-radius: 0 !important;
  }

  .ss-hero-content {
    width: 100% !important;
    padding: 42px 24px !important;
  }

  .ss-payments {
    max-width: 250px !important;
    width: 100% !important;
  }

  .ss-brand span {
  display: none !important;
}

.ss-nav {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 10px !important;
}

  .ss-nav {
    display: none !important;
  }

  .ss-header__row {
    justify-content: flex-start !important;
    min-height: 72px !important;
  }

  .ss-brand img {
    width: 68px !important;
    height: 68px !important;
  }
}

.ss-trust-line {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #334155;
}

.ss-trust-number {
  font-weight: 800;
  color: #10233c;
  font-size: 20px;
  margin-right: 6px;
}

.ss-trust-countries {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #64748b;
}

.ss-trust-line{
text-align:center;
margin-top:28px;
margin-bottom:14px;
font-size:17px;
color:#334155;
}

.ss-trust-number{
font-weight:800;
color:#10233c;
font-size:22px;
margin-right:6px;
}

.ss-trust-countries{
display:block;
margin-top:6px;
font-size:14px;
color:#64748b;
}
/* ===== MOBILE HEADER FINAL ===== */
@media (max-width: 768px) {

  /* esconde header do Astra */
  .ast-mobile-header-wrap,
  .main-header-bar-wrap,
  .ast-builder-grid-row-container,
  .ast-primary-header-bar,
  .ast-above-header-wrap,
  .ast-below-header-wrap,
  .ast-header-break-point .main-header-bar,
  .site-header,
  #masthead {
    display: none !important;
  }

  /* mantém nosso header visível */
  .ss-header {
    display: block !important;
  }

  .ss-header__row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 72px !important;
    padding: 14px 16px !important;
    gap: 10px !important;
  }

  .ss-brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .ss-brand img {
    width: 68px !important;
    height: 68px !important;
  }

  .ss-brand span {
    display: none !important;
  }

  .ss-nav {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 8px !important;
  }

  .ss-nav a {
    display: inline-block !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #10233c !important;
    text-decoration: none !important;
  }

  .ss-hide-mobile {
    display: none !important;
  }
}
.ss-copyright{
text-align:center;
font-size:12px;
color:#94a3b8;
padding:18px 10px;
border-top:1px solid #e5e7eb;
margin-top:20px;
}
.ss-social{
  display:flex;
  gap:12px;
  margin-top:12px;
}

.ss-social img{
  width:28px;
  height:28px;
}
.ss-since{
  font-size:14px;
  color:#64748b;
  margin-top:8px;
  font-weight:600;
}

.ss-footer{
  background:#ffffff;
  color:#10233c;
  padding:64px 0 44px;
  border-top:1px solid rgba(16,35,60,.08);
}

.ss-footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:32px;
  align-items:start;
}

.ss-footer h3,
.ss-footer h4{
  margin:0 0 14px;
  color:#10233c;
}

.ss-footer p{
  margin:0 0 10px;
  color:#425466;
  line-height:1.6;
}

.ss-payments{
  max-width:360px;
  width:100%;
}

.ss-social{
  display:flex;
  gap:14px;
  margin-top:14px;
}

.ss-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid rgba(16,35,60,.08);
  transition:.25s ease;
}

.ss-social a:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(16,35,60,.12);
}

.ss-social img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.ss-footer-bottom{
  text-align:center;
  margin-top:30px;
  padding-top:22px;
  border-top:1px solid rgba(16,35,60,.08);
}

.ss-footer-intl{
  margin:0 0 12px;
  font-size:14px;
  color:#425466;
  font-weight:700;
  letter-spacing:.2px;
}

.ss-copyright{
  text-align:center;
  font-size:12px;
  color:#94a3b8;
  padding:0 10px 4px;
}

@media (max-width:1024px){
  .ss-footer-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
}

@media (max-width:768px){
  .ss-footer{
    padding:48px 0 34px;
  }

  .ss-payments{
    max-width:250px !important;
    width:100% !important;
  }

  .ss-footer-intl{
    font-size:13px;
    line-height:1.5;
    padding:0 10px;
  }

  .ss-copyright{
    font-size:11px;
    line-height:1.5;
  }
}

.ss-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.72);
  z-index:99999;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.ss-modal-content{
  background:#fff;
  width:100%;
  max-width:560px;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.ss-modal-close{
  position:absolute;
  top:12px;
  right:14px;
  width:36px;
  height:36px;
  border:none;
  border-radius:999px;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  font-size:22px;
  cursor:pointer;
  z-index:2;
}

.ss-modal-slider{
  display:flex;
  overflow-x:auto;
  gap:10px;
  padding:12px;
  background:#f8fafc;
}

.ss-modal-slider img{
  width:100%;
  max-width:320px;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  flex:0 0 auto;
}

.ss-modal-text{
  padding:18px;
}

.ss-modal-text h3{
  margin:0 0 10px;
  color:#10233c;
}

.ss-modal-text p{
  font-size:15px;
  color:#475569;
  line-height:1.6;
  margin-bottom:16px;
}

@media (max-width:768px){
  .ss-modal{
    padding:12px;
  }

  .ss-modal-slider img{
    width:88vw;
    height:230px;
  }
}
.ss-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

.ss-modal.is-active {
    display: block;
}

.ss-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.ss-modal__box {
    position: relative;
    width: min(920px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    overflow: auto;
    margin: 12px auto;
    background: #fff;
    border-radius: 18px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.ss-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    min-width: 0 !important;
}

.ss-modal__close:hover {
    opacity: 0.75;

}

.ss-modal__gallery {
    position: relative;
    background: #f7f7f7;
}

.ss-modal__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 62vh;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.ss-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.ss-modal__nav--prev {
    left: 12px;
}

.ss-modal__nav--next {
    right: 12px;
}

.ss-modal__content {
    padding: 22px;
}

.ss-modal__title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
}

.ss-modal__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.js-open-modal {
    cursor: pointer;
}

body.ss-modal-open {
    overflow: hidden;
}

.ss-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
    padding: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.ss-modal__nav--prev {
    left: 20px;
}

.ss-modal__nav--next {
    right: 20px;
}

.ss-modal__nav:hover {
    opacity: 0.7;
}
.ss-modal__nav {
    background: none !important;
    box-shadow: none !important;
}
body.ss-modal-open .whatsapp-button,
body.ss-modal-open .wa-button,
body.ss-modal-open .joinchat,
body.ss-modal-open .chat-button {
    display: none !important;
}

.ss-lang-switch {
    display: flex;
    align-items: center;
    margin: 0 16px;
}

.ss-lang-switch .gtranslate_wrapper,
.ss-lang-switch .switcher {
    display: flex !important;
    align-items: center !important;
}

.ss-lang-switch .switcher .selected a {
    border-radius: 999px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    background: #fff !important;
    padding: 8px 12px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
    font-size: 14px !important;
}

.ss-lang-switch .switcher .option {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.16) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
}

.ss-lang-switch .switcher .option a {
    background: #fff !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
}

.ss-lang-switch .switcher .option a:hover {
    background: #f7f7f7 !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.ss-lang-switch .switcher .selected,
.ss-lang-switch .gt-current-lang,
.ss-lang-switch .goog-te-gadget-simple,
.ss-lang-switch .goog-te-menu-value span:last-child,
.ss-lang-switch .goog-te-menu-value span:first-child,
.ss-lang-switch .goog-te-menu-value img + span,
.ss-lang-switch .goog-te-menu-value span[aria-hidden="true"] {
    display: none !important;
}

.ss-lang-switch .goog-te-gadget-simple {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ss-lang-switch .goog-te-menu-value {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.ss-lang-switch .goog-te-menu-value img {
    margin: 0 !important;
}

.ss-lang-switch .goog-te-gadget {
    font-size: 0 !important;
}

.ss-lang-switch .goog-te-gadget .goog-te-combo {
    display: none !important;
}

.ss-lang-switch .goog-te-gadget > span {
    display: none !important;
}

.ss-lang-switch .skiptranslate {
    font-size: 0 !important;
}

.ss-lang-switch img {
    display: inline-block !important;
}

@media (max-width: 768px){

.ss-lang-switch{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:10px;
}

.ss-lang-switch img{
    margin:0 6px;
}

}

@media (min-width: 769px){

.ss-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.ss-card-body{
    display:flex;
    flex-direction:column;
    flex:1;
}

.ss-card-body .ss-btn{
    margin-top:auto;
    align-self:flex-start;
}

}

.ss-modal-content{
    max-width: 1100px;
    width: 92%;
    border-radius: 24px;
    overflow: hidden;
}

.ss-modal-text,
.ss-modal__content{
    padding: 28px 32px 34px;
    text-align: left;
}

.ss-modal-text h3,
.ss-modal__title,
#ssTitle,
#ssModalTitle{
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #14213d;
    margin: 0 0 14px;
}

.ss-modal-text p,
.ss-modal__text,
#ssDescription,
#ssModalText{
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
    max-width: 800px;
}

.ss-modal-text p + p,
.ss-modal__text p + p,
#ssDescription p + p,
#ssModalText p + p{
    margin-top: 14px;
}

.ss-modal-text ul,
.ss-modal__text ul,
#ssDescription ul,
#ssModalText ul{
    margin: 16px 0 0;
    padding-left: 22px;
}

.ss-modal-text li,
.ss-modal__text li,
#ssDescription li,
#ssModalText li{
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a4a4a;
}

.ss-modal-slider img,
.ss-modal__image,
#ssModalImage{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px){
    .ss-modal-text,
    .ss-modal__content{
        padding: 20px 18px 24px;
    }

    .ss-modal-text h3,
    .ss-modal__title,
    #ssTitle,
    #ssModalTitle{
        font-size: 26px;
    }

    .ss-modal-text p,
    .ss-modal__text,
    #ssDescription,
    #ssModalText{
        font-size: 16px;
        line-height: 1.7;
    }
}