*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#161513;
}

/* NAVBAR */
/* ===== NAVBAR BOOTSTRAP FIX ===== */

.custom-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(22,21,19,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(242,202,44,.1);

    transition: .4s ease;
}

/* quando scroll */
.custom-nav.scrolled{
    background: rgba(22,21,19,.95);
    box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

/* links */
.custom-nav .nav-link{
    color: #fff !important;
    font-weight: 500;
    transition: .3s;
}

.custom-nav .nav-link:hover{
    color: #F2CA2C !important;
}

/* logo */
.custom-nav .navbar-brand{
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* icones sociais */
.custom-nav i{
    font-size: 16px;
    transition: .3s;
}

.custom-nav i:hover{
    color: #F2CA2C;
    transform: translateY(-2px);
}

/* botão */
.custom-nav .btn{
    background: #F2CA2C;
    border: none;
    color: #161513;
    font-weight: 600;
    border-radius: 30px;
    transition: .3s;
}

.custom-nav .btn:hover{
    background: #fff;
    transform: translateY(-3px);
}













.custom-nav .navbar-brand img{
    transition: .4s ease;
}

.custom-nav .navbar-brand:hover img{
    transform: rotate(10deg) scale(1.1);
}

.custom-nav .navbar-brand{
    transition: .3s ease;
}

.custom-nav .navbar-brand:hover{
    transform: translateY(-2px);
}

.custom-nav .nav-link{
    position: relative;
    transition: .3s ease;
}

/* linha animada */
.custom-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #F2CA2C;
    transition: .3s ease;
}

.custom-nav .nav-link:hover::after{
    width: 100%;
}

.custom-nav .nav-link:hover{
    transform: translateY(-2px);
    color: #F2CA2C !important;
}
.custom-nav i{
    transition: .3s ease;
    display: inline-block;
}

.custom-nav i:hover{
    color: #F2CA2C;
    transform: translateY(-4px) scale(1.2);
    text-shadow: 0 10px 20px rgba(242,202,44,.3);
}
.custom-nav .btn{
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

/* efeito brilho */
.custom-nav .btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    transition: .5s;
}

.custom-nav .btn:hover::before{
    left: 120%;
}

.custom-nav .btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242,202,44,.4);
}
.custom-nav{
    animation: navDrop .6s ease forwards;
}

@keyframes navDrop{
    from{
        transform: translateY(-100%);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}



.logo{
    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;
    font-size:20px;
    font-weight:700;

    cursor:pointer;
}

.logo img{
    width:45px;
    height:45px;
    object-fit:contain;

    transition:.4s;
}

.logo:hover img{
    transform:rotate(8deg) scale(1.05);
}


.menu a:hover{
    color:#F2CA2C;
}


/* =========================
   NAVBAR EXPANDIDA NO SCROLL
========================= */

.custom-nav{
    transition: all .4s ease;
}

/* estado normal */
.custom-nav .navbar-brand img{
    width: 40px;
    height: 40px;
    transition: all .4s ease;
}

/* quando scroll ativa */
.custom-nav.scrolled{
    padding: 18px 0; /* aumenta altura */
    background: rgba(22,21,19,.95);
    box-shadow: 0 5px 20px rgba(0,0,0,.35);
}

/* logo cresce no scroll */
.custom-nav.scrolled .navbar-brand img{
    width: 60px;
    height: 60px;
    transform: scale(1.1);
}

/* opcional: aumenta texto do logo */
.custom-nav.scrolled .navbar-brand{
    font-size: 22px;
}



.btn-nav:hover{
    transform:translateY(-2px);
}




/* =========================
   HERO SECTION COM CAROUSEL
========================= */

.hero-section{
    position: relative;
    width: 100%;
    height: 95vh; /* 🔥 NÃO OCUPA TELA TODA */
    overflow: hidden;
}

/* carousel base */
.hero-carousel,
.carousel-inner,
.carousel-item{
    height: 100%;
    transition: transform 4s ease-in-out !important;
}

/* cada slide */
.hero-slide{
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    transform: scale(1.05);
}

/* overlay escuro global */
.hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(22,21,19,.75);
    z-index: 1;
}

/* texto por cima */
.hero-content{
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
    padding: 20px;
}

/* título */
.hero-content h1{
    font-family: 'Lobster', cursive;
    font-size: 60px;
    margin-bottom: 15px;
}

/* texto */
.hero-content p{
    font-size: 18px;
    margin-bottom: 25px;
    opacity: .9;
}

/* botão */
.btn-hero{
    display: inline-block;
    padding: 9px 22px;
    background: #F2CA2C;
    color: #161513;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-hero:hover{
    transform: translateY(-3px);
}

/* indicadores dourados */
.carousel-indicators [data-bs-target]{
    background-color: #F2CA2C;
}

/* responsivo */
@media(max-width:768px){

    .hero-section{
        height: 60vh;
    }

    .hero-content h1{
        font-size: 38px;
    }

    .hero-content p{
        font-size: 14px;
    }
}


/* garante posição correta */
.hero-carousel{
    position: relative;
}

/* indicadores estilo premium */
.carousel-indicators{
    bottom: 20px;
    z-index: 5;
}

.carousel-indicators button{
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgb(255, 255, 255);
    border: none;
    margin: 0 4px;
}

.carousel-indicators .active{
    background: #F2CA2C;
}

/* botões next/prev visíveis */
.carousel-control-prev,
.carousel-control-next{
    z-index: 5;
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: invert(1);
    opacity: .8;
}




/* =========================
   SOCIAL SIDEBAR (FIXO ESQUERDA)
========================= */

.social-sidebar {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ICONES */
.social-sidebar a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    color: #F2CA2C;
    font-size: 1.2rem;

    border: 1px solid rgba(242,202,44,0.2);

    transition: all 0.35s ease;

    animation: floatIcons 3s ease-in-out infinite;
}

/* HOVER */
.social-sidebar a:hover {
    background: #F2CA2C;
    color: #161513;

    transform: scale(1.15) translateX(5px);

    box-shadow: 0 10px 30px rgba(242,202,44,0.4);
}

/* ANIMAÇÃO FLUTUANTE */
@keyframes floatIcons {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}













.custom-nav .navbar-brand img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: all .4s ease;
}





 /* aqui comecam animacoes */

.navbar{
    transition:.4s ease;
}

.navbar.scrolled{
    background:rgba(22,21,19,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

.hero h1{
    opacity:0;
    transform:translateY(50px);
    animation:titleUp 1s ease forwards;
}

.hero p{
    opacity:0;
    animation:fadeIn 1s ease forwards;
    animation-delay:.5s;
}

.btn-hero{
    opacity:0;
    animation:fadeIn 1s ease forwards;
    animation-delay:1s;
}
@keyframes titleUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    to{
        opacity:1;
    }
}

.hero{
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:url(images/barbeiros.jpg);
    background-size:cover;
    background-position:center;

    animation:zoomHero 15s ease-in-out infinite alternate;

    z-index:-2;
}

@keyframes zoomHero{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}
.btn-hero:hover,
.btn-nav:hover{

    background:white;
    color:#161513;

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(242,202,44,.4);

}

.service-card{
    transition:.4s;
}

.service-card:hover{

    transform:
    translateY(-10px);

    border-color:#F2CA2C;

    box-shadow:
    0 20px 40px rgba(0,0,0,.2);

}

.gallery img{

    transition:.5s;

}

.gallery img:hover{

    transform:scale(1.1);

}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{

    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    transition:.4s ease;
}

.social-icons a:hover{

    background:#F2CA2C;
    color:#161513;

    border-color:#F2CA2C;

    transform:translateY(-4px);
}

.btn-nav{

    padding:12px 24px;

    background:#F2CA2C;
    color:#161513;

    text-decoration:none;
    font-weight:600;

    border-radius:30px;

    transition:.4s;
}

.btn-nav:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 25px rgba(242,202,44,.35);

}

.custom-nav{
    background: rgba(22,21,19,0.75);
    backdrop-filter: blur(12px);
}

.nav-link:hover{
    color:#F2CA2C !important;
}


/* sobre  */
/* ===== SOBRE PREMIUM ===== */

.sobre-premium{
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #161513;
}

/* fundo imagem (parallax leve) */
.sobre-bg{
    position: absolute;
    inset: 0;
   
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    z-index: 0;
}

/* overlay escuro */
.sobre-overlay{
    position: absolute;
    inset: 0;
    background: rgba(22,21,19,0.85);
    z-index: 1;
}

/* texto */
.sobre-texto{
    position: relative;
    z-index: 2;
    color: #fff;
}

.sobre-texto h2{
    font-family: 'Lobster', cursive;
    font-size: 60px;
    color: #F2CA2C;
    margin-bottom: 20px;
}

.sobre-texto p{
    font-size: 17px;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 15px;
}

/* botão */
.btn-sobre{
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: #F2CA2C;
    color: #161513;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.btn-sobre:hover{
    transform: translateY(-3px);
    background: #fff;
}

/* ===== CARDS ===== */

.sobre-cards{
    position: relative;
    z-index: 2;
    display: grid;
    gap: 20px;
}

.card-sobre{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(242,202,44,0.2);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    transition: .4s;
    backdrop-filter: blur(10px);
}

.card-sobre i{
    font-size: 24px;
    color: #F2CA2C;
    margin-bottom: 10px;
}

.card-sobre h4{
    margin-bottom: 8px;
}

.card-sobre p{
    font-size: 14px;
    opacity: .8;
}

.card-sobre:hover{
    transform: translateY(-8px);
    border-color: #F2CA2C;
    box-shadow: 0 15px 35px rgba(0,0,0,.4);
}

/* SERVICOS */






.servicos-section{
    padding: 100px 0;
    background: #161513;
    color: #fff;
}

/* título */
.section-titlee{
    text-align: center;
    margin-bottom: 50px;
}

.section-titlee h2{
    font-family: 'Lobster', cursive;
    font-size: 45px;
    color: #fff;
}

/* card */

.service-card{
    background: linear-gradient(145deg, #0f0f0f, #0a0a0a);
    border-radius: 22px;
    overflow: hidden;
    padding-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all .5s ease;
    text-align: center;
    position: relative;

    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

/* hover mais cinema */
.service-card:hover{
    transform: translateY(-15px) scale(1.02);
    border-color: #F2CA2C;
    box-shadow: 0 25px 60px rgba(0,0,0,.7);
}

/* brilho dourado ao hover */
.service-card:hover::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(242,202,44,0.08), transparent);
    animation: shine 1.2s ease;
}

@keyframes shine{
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}  
.service-card:hover{
    transform: translateY(-10px);
    border-color: #F2CA2C;
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

/* imagem */

.service-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    filter: contrast(1.1) saturate(1.2);
    transition: .5s ease;
}
.service-card:hover img{
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.2);
}

/* texto */
.service-card h4{
    margin-top: 15px;
    font-size: 20px;
}

.service-card p{
    font-size: 14px;
    opacity: .8;
    padding: 0 15px;
}

/* preço */
.price{
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
}

.service-card small{
    color: #aaa;
}

/* lista */
.service-card ul{
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.service-card ul li{
    padding: 5px 0;
    font-size: 14px;
    opacity: .8;
}

/* popular badge */

.badge-popular{
    background: linear-gradient(135deg, #F2CA2C, #ffdd55);
    color: #111;
    box-shadow: 0 5px 20px rgba(242,202,44,.4);
    letter-spacing: 1px;
}



/* =========================
   HORÁRIOS SECTION
========================= */
.current-day{
    background: rgba(58, 46, 46, 0.78) !important;
    border-color: #ff5252 !important;
    color: #fff;
    font-weight: 600;
}

#shop-status{
    margin-top: 25px;
    font-size: 18px;
    font-weight: bold;
}

.open{
    color: #4CAF50;
}

.closed{
    color: #ff4444;
}  
.schedule-section{
    position: relative;
    background: url('img/logoo.png') center center/cover no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

/* escurece a imagem */
.schedule-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
}

/* conteúdo acima do overlay */
.schedule-overlay{
    position: relative;
    z-index: 2;
}

/* fita superior */
.schedule-top-line{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F2CA2C;
    z-index: 3;
}

/* fita inferior */
.schedule-bottom-line{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F2CA2C;
    z-index: 3;
}

/* conteúdo */
.schedule{
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    text-align: left;
}

.schedule h3{
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: #F2CA2C;
    margin-bottom: 50px;
    
}

.schedule-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
}

/* cards */
.schedule-grid div{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(242,202,44,.25);

    padding: 18px;
    border-radius: 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #fff;

    transition: .3s;
}

.schedule-grid div:hover{
    transform: translateY(-5px);
    border-color: #F2CA2C;
}

.schedule-grid span{
    color: #F2CA2C;
    font-weight: 600;
}

.servicos-section{
    padding: 120px 0;
    background: radial-gradient(circle at top, #1a1a1a 0%, #0b0b0b 60%, #000 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* luz ambiente (cinema feel) */
.servicos-section::before{
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242,202,44,0.15), transparent 70%);
    filter: blur(60px);
}

.servicos-section::after{
    content: "";
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    filter: blur(60px);
}








/* ==========================================================================
   SEÇÃO SERVIÇOS - STYLING IDÊNTICO À FOTO
   ========================================================================== */

   .servicos-section {
    padding: 100px 0;
    background-color: #0b0b0b; /* Fundo escuro premium */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Título da Seção */
.section-titlee {
    text-align: center;
    margin-bottom: 60px;
}

.section-titlee h2 {
    font-family: 'Lobster', cursive;
    font-size: 46px;
    color: #ffffff;
    font-weight: normal;
}

/* Estrutura do Card */
.service-card {
    background-color: #050505; /* Fundo interno do card muito escuro */
    border-radius: 16px;
    padding: 20px; /* Margem interna descolando a imagem e os textos */
    border: 1px solid rgba(255, 255, 255, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left; /* Alinhamento estrito à esquerda conforme a foto */
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* Imagem interna do Card */
.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px; /* Bordas arredondadas na foto */
    margin-bottom: 20px;
}

/* Badge "Popular" no Card do Meio */
.badge-popular {
    align-self: flex-start;
    background-color: #ffffff;
    color: #000000;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

/* Títulos dos Serviços */
.service-card h4 {
    font-family: 'Lobster', cursive;
    font-size: 24px;
    color: #ffffff;
    font-weight: normal;
    margin-bottom: 12px;
}

/* Parágrafo de descrição */
.service-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 70px; /* Mantém os cards com tamanhos alinhados */
}


.service-card h4 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

/* Preço Grande e Itálico/Estilizado */
.price {
    font-family: 'Lobster', cursive;
    font-size: 42px;
    color: #ffffff;
    font-weight: normal;
    margin-top: 15px;
    line-height: 1;
}

.service-card small {
    display: block;
    font-size: 13px;
    color: #777777;
    margin-top: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

/* Lista de Benefícios (Removendo bolinhas e pondo os checks dourados) */
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Customização dos ícones de Check Dourado */
.service-card ul li::before {
    content: "\f058"; /* Código do check-circle do FontAwesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #d1a826; /* Cor dourada idêntica ao círculo com check da imagem */
    font-size: 15px;
}




/* =========================
   GALERIA - BASE
========================= */
.galeria-section {
   
    background: #facb20;
    padding: 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   LAYOUT BOOTSTRAP
========================= */
.galeria-esquerda {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #eec228;
   
}

.galeria-direita {
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
  
}


/* =========================
   LAYOUT BOOTSTRAP
========================= */
.galeria-esquerda {
    min-height: 100vh;
    display: flex;
    align-items: center;         /* Centraliza verticalmente na tela */
    justify-content: flex-start; /* Mantém o bloco colado à esquerda */
    padding: 60px 80px;          /* Espaçamento interno para não colar na borda da tela */
}

/* =========================
   TEXTO
========================= */

.section-title {
    text-align: center; /* Garante a centralização horizontal do bloco */
    width: 100%;
  
}

.section-title h2 {
    font-family: 'Lobster', cursive;
    font-size: 52px;             /* Tamanho imponente como na imagem */
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-weight: normal;
    
    /* Força o texto a ficar em uma única linha reta */
    white-space: nowrap;        
    text-align: center;         /* Centraliza as letras internamente */
}

/* Ajuste opcional para não quebrar o layout em celulares muito pequenos */
@media (max-width: 576px) {
    .section-title h2 {
        font-size: 32px;         /* Diminui um pouco o tamanho apenas no mobile para caber em uma linha */
    }
}
.section-title .subtitle {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 3px;
    margin-bottom: 25px;         /* Espaço maior abaixo do - TGR - como na foto */
}



.section-title p {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 500;            /* Um pouco mais de peso na leitura */
}

/* =========================
   GRID HORIZONTAL (LINHAS)
========================= */
.insta-grid {
    display: flex;
    flex-direction: column; /* Organiza uma linha em cima da outra */
    gap: 15px; /* Espaçamento idêntico ao da foto */
    width: 100%;
}

.grid-row {
    width: 100%;
    overflow: hidden;
}

/* =========================
   SCROLL CONTENT HORIZONTAL
========================= */
.scroll-content {
    display: flex;
    flex-direction: row; /* Elementos lado a lado */
    gap: 15px;
    width: max-content;
}

/* =========================
   IMAGENS
========================= */
/* =========================
   IMAGENS - TAMANHO AMPLIADO PRESERVANDO A PROPORÇÃO
========================= */
.insta-item {
    height: 350px;          /* Aumentado de 300px para 350px para dar mais imponência */
    aspect-ratio: 1.38 / 1; /* Mantém a largura e postura retangular perfeita igual à foto */
    border-radius: 0px;     /* Mantido reto para colar perfeitamente sem brechas */
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Sombreado levemente mais visível para profundidade */
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s cubic-bezier(0.25, 1, 0.5, 1); /* Transição suave e elegante */
}

/* Efeito de zoom no hover sem perder a postura */
.insta-item:hover img {
    transform: scale(1.06); 
}
/* =========================
   OVERLAY
========================= */
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-info h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
    border: 2px solid #fff;
    padding: 6px 12px;
    text-transform: uppercase;
}

/* =========================
   ANIMAÇÃO HORIZONTAL CONTINUA
========================= */

/* Linha superior corre para a Esquerda */
.row-left .scroll-content {
    animation: escorregarEsquerda 20s linear infinite;
}

/* Linha inferior corre para a Direita */
.row-right .scroll-content {
    animation: escorregarDireita 20s linear infinite;
}

/* Pausa ao passar o mouse */
.grid-row:hover .scroll-content {
    animation-play-state: paused;
}

@keyframes escorregarEsquerda {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move metade (onde o conteúdo se duplica) */
}

@keyframes escorregarDireita {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 991.98px) {
    .galeria-esquerda {
        min-height: auto;
        padding: 40px 20px;
        text-align: left;
    }
    .section-title h2 {
        font-size: 36px;
    }
    .insta-item {
        height: 160px; /* Reduz o tamanho das fotos em telas menores */
    }
}







/* =========================
   SEÇÃO CONTATOS - BASE
========================= */
.contactos-section {
    position: relative;
    background-color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Onda Superior */
.wave-top {
    width: 100%;
    line-height: 0;
    background-color: #eec228; /* Cor de fundo amarela para contrastar com a onda preta */
}
.wave-top svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Bloco Central Amarelo */
.contactos-content {
    background-color: #eec228;
    padding: 20px 0 100px 0; /* Margem inferior estendida para criar a inclinação sobre o mapa */
    position: relative;
    z-index: 2;
}

/* Elemento para fazer o corte diagonal inferior do bloco amarelo */
.contactos-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: transparent;
    border-bottom: 80px solid #fff; /* Cria o efeito do corte diagonal revelando o mapa */
    border-left: 100vw solid transparent;
    transform: translateY(100%);
    z-index: 1;
}

/* =========================
   TEXTOS (LADO ESQUERDO)
========================= */
.contactos-text {
    padding-right: 20px;
}

.contactos-text h2 {
    font-family: 'Lobster', cursive;
    font-size: 36px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contactos-text p {
    font-size: 16px;
    color: #2b2b2b;
    font-weight: 500;
    line-height: 1.5;
}

/* =========================
   FORMULÁRIO (LADO DIREITO)
========================= */
.contactos-form .form-label {
    font-size: 14px;
    color: #55440e;
    font-weight: 600;
    margin-bottom: 5px;
}

.contactos-form .form-control {
    background-color: rgba(0, 0, 0, 0.06); /* Input levemente escurecido tom sobre tom */
    border: none;
    border-radius: 20px; /* Bordas arredondadas idênticas à imagem */
    padding: 12px 20px;
    color: #1a1a1a;
    font-size: 15px;
}

.contactos-form .form-control:focus {
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: none;
    outline: none;
}

.contactos-form textarea.form-control {
    border-radius: 30px; /* Textarea mais arredondado */
    resize: none;
}

/* Botão Submit */
.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 10px 40px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* =========================
   MAPA E CARD DE LOCALIZAÇÃO
========================= */
.mapa-container {
    position: relative;
    width: 100%;
    height: 450px;
    z-index: 0;
    margin-top: 60px; /* Alinha o mapa logo abaixo do corte diagonal */
}

.mapa-bg {
    width: 100%;
    height: 100%;
}

/* Card Escuro Flutuante */
.location-card {
    position: absolute;
    bottom: 40px;
    right: 15%; /* Posicionado de forma idêntica ao design */
    background-color: #262626;
    color: #ffffff;
    padding: 30px 40px;
    border-radius: 24px; /* Bordas curvas robustas */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 380px;
    width: 90%;
    z-index: 3;
}

.location-card h3 {
    font-family: 'Lobster', cursive;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
}

.location-card .address {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.location-card .coords {
    font-size: 13px;
    color: #a0a0a0;
    margin: 0;
}

/* =========================
   RESPONSIVIDADE (MOBILE)
========================= */
@media (max-width: 767.98px) {
    .contactos-content {
        padding: 40px 0 60px 0;
    }
    .contactos-text {
        text-align: center;
        margin-bottom: 40px;
    }
    .location-card {
        right: 5%;
        left: 5%;
        margin: 0 auto;
        bottom: 20px;
        padding: 20px;
    }
    .mapa-container {
        height: 380px;
    }
}









/* =========================
   SEÇÃO SOBRE - PREMIUM DARK
========================= */
.sobre-section {
    background-color: #1a1a1a; /* Fundo idêntico ao da imagem */
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Imagem do Lado Esquerdo */
.sobre-imagem {
    width: 100%;
    min-height: 80vh;
    background-image: url('img/IMG_1595.JPG.png'); /* Substitua pelo caminho da sua imagem real */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Blur/Sombra sutil para integrar com o lado escuro (opcional, melhora a transição) */
.sobre-imagem::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, #1a1a1a);
}

/* Conteúdo do Lado Direito */
.sobre-conteudo {
    padding: 60px 80px; /* Amplo espaço interno como na imagem */
    max-width: 650px;
}

/* Título com a fonte Lobster */
.sobre-titulo {
    font-family: 'Lobster', cursive;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: normal;
    line-height: 1.2;
}

/* Texto descritivo */
.sobre-texto {
    font-size: 15px;
    color: #cccccc; /* Tom de cinza claro legível sobre o fundo preto */
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Botão Amarelo Oval (Contact) */
.btn-contact {
    display: inline-block;
    background-color: #eec228; /* Amarelo identidade da TGR */
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 35px;
    border-radius: 25px; /* Formato oval idêntico ao print */
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 194, 40, 0.3);
}

/* =========================
   RESPONSIVIDADE (MOBILE)
========================= */
@media (max-width: 991.98px) {
    .sobre-conteudo {
        padding: 50px 40px;
    }
    .sobre-titulo {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .sobre-imagem {
        min-height: 40vh; /* Em telas pequenas a imagem fica por cima com menor altura */
    }
    .sobre-imagem::after {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to bottom, transparent, #1a1a1a);
    }
    .sobre-conteudo {
        padding: 40px 25px;
        text-align: left;
    }
}







/* =========================
   FOOTER - PREMIUM DARK
========================= */

.footer-section {
    background-color: #1a1a1a;
    padding: 40px 0 20px 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

/* TOPO DO FOOTER */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* 🔥 CENTRALIZA VERTICALMENTE */
    flex-wrap: wrap;
    gap: 20px;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-img {
    height: 50px;
    object-fit: contain;
}

/* AÇÕES (ICONS + BOTÃO) */
.footer-actions {
    display: flex;
    align-items: center;   /* 🔥 CENTRALIZA ICONES E BOTÃO */
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* ÍCONES */
.footer-socials {
    display: flex;
    align-items: center;   /* 🔥 CENTRALIZA ICONES ENTRE SI */
    justify-content: center;
    gap: 15px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: color 0.3s ease;
    text-decoration: none;
}

/* hover icons */
.footer-socials a:hover {
    color: #eec228;
}

/* BOTÃO */
.btn-follow {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #eec228;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;

    padding: 8px 22px;
    border-radius: 20px;

    text-decoration: none;
    transition: all 0.3s ease;
}

/* hover botão */
.btn-follow:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* DIVISOR */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px 0;
}

/* COPYRIGHT */
.footer-bottom p {
    font-size: 13px;
    color: #888888;
    margin: 0;
    font-weight: 300;
    text-align: center;
}
/* =========================
   RESPONSIVIDADE (MOBILE)
========================= */
@media (max-width: 575.98px) {
    .footer-top {
        flex-direction: column !important;
        text-align: center;
        justify-content: center !important;
    }
    
    .footer-actions {
        flex-direction: column;
        gap: 15px;
    }
}

/* Garante que o Card flutue de verdade sobre o mapa */
.mapa-container {
    position: relative;
    width: 100%;
    height: 480px;
}

.location-card {
    position: absolute;
    bottom: 40px;
    right: 10%; /* Empurra para o canto direito exatamente como na foto do WhatsApp */
    background-color: #262626;
    color: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 360px;
    width: 90%;
    z-index: 5;
}

/* Customização do Rodapé */
.footer-section {
    background-color: #1a1a1a;
    padding: 30px 0 20px 0;
}

.footer-logo .logo-img {
    height: 45px;
    object-fit: contain;
}




.modal-content{
    border-radius: 12px;
    border: none;
}

.modal-header{
    background: #161513;
    color: #fff;
}

.modal-title{
    font-family: 'Lobster', cursive;
}

.modal-footer .btn-warning{
    background: #F2CA2C;
    border: none;
    color: #161513;
}

.modal-footer .btn-warning:hover{
    background: #fff;
}






.modal-content{
    border:none;
    border-radius:20px;
    overflow:hidden;
}

.modal-header{
    background:#161513;
    color:white;
    border:none;
}

.modal-title{
    font-weight:600;
}

.form-control,
.form-select{
    border-radius:12px;
    padding:12px;
}

.btn-warning{
    background:#d4af37;
    border:none;
    padding:14px;
    font-weight:600;
}

.btn-warning:hover{
    background:#c59b1d;
}