.menu {
  background: #000;      /* fundo preto */
  padding: 10px 0;
}

.menu a {
  color: #fff;           /* links em branco */
}

.menu a:hover {
  color: #f5deb3;        /* destaque em bege ao passar o mouse */
}

header {
  text-align: center;
  padding: 10px;
  background-color: #000; /* fundo preto do header incluindo logo e ícones */
}

.logo img {
  max-width: 150px;
  display: block;
  margin: 0 auto;
}

.social-icons a {
  margin: 0 8px;
  color: #fff;  /* ícones brancos sobre fundo preto */
  font-size: 1.2em;
}

.carousel img {
  width: 100%;
  height: auto;
  display: none; /* todas escondidas inicialmente */
  transition: opacity 1s ease-in-out;
}

.carousel img:first-child {
  display: block; /* primeira imagem visível */
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #25d366, #128C7E); /* gradiente moderno */
  color: white;
  border-radius: 50%;
  padding: 18px;
  font-size: 2em; /* maior destaque */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* sombra mais chamativa */
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.2) rotate(-10deg); /* animação divertida ao passar o mouse */
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
}

.whatsapp-float i {
  position: relative;
  z-index: 2;
}

.whatsapp-float .pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Depoimentos */
#depoimentos {
  background: #f8f5f0;
  padding: 60px 20px;
  text-align: center;
}

#depoimentos h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  font-style: italic;
  font-size: 1.2em;
  color: #444;
  line-height: 1.6;
}

.testimonial.active {
  display: block;
  animation: fadeIn 1s ease-in-out;
}

.testimonial h4 {
  margin-top: 15px;
  font-weight: bold;
  color: #222;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Área Contato ---------- */
.contact-section {
  padding: 60px 20px;
  background: #f9f8f6;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #111;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Coluna esquerda: Logo + contatos */
.contact-info {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.contact-logo {
  max-width: 220px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #333;
}

.info-item i {
  font-size: 1.3rem;
  color: #111;
}

/* Coluna direita: Formulário */
.contact-form {
  flex: 1 1 450px;
  text-align: left;
}

.contact-form .form-group { margin-bottom: 18px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
  font-style: italic;
}

.contact-form button {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background .3s;
  width: 100%;
}
.contact-form button:hover { background: #444; }

/* Responsivo */
@media (max-width: 768px) {
  .contact-container { flex-direction: column; align-items: stretch; }
  .contact-info { align-items: flex-start; }
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
}

/* Cabeçalho */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #000;
  color: #fff;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #d4af37;
}

/* Texto centralizado */
.submenu-title {
  text-align: center;
  margin: 20px 0;
}

.submenu-title h2 {
  font-size: 18px;
  font-weight: normal;
  color: #333;
}

/* Galeria */
.gallery {
  width: 90%;
  margin: 0 auto;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-item {
  position: relative;
  width: 30%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Mostrar mais */
#show-more {
  display: none;
}

.extra-gallery {
  display: none;
}

#show-more:checked ~ .extra-gallery {
  display: block;
}

.show-more-btn {
  display: block;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin: 30px auto;
  text-align: center;
  width: fit-content;
}

.show-more-btn:hover {
  background: #333;
}

/* =========================================
   CARROSSEL DE DESTAQUE
========================================= */

.hero-carousel {
    width: 100%;
    height: 75vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

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

/* Escurecimento da fotografia */

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 1;
}

/* Texto sobre a fotografia */

.slide-text {
    position: absolute;
    z-index: 3;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 850px;

    text-align: center;
    color: #fff;
}

.slide-text h1 {
    font-family: "Georgia", serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.slide-text p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
}

.slide-text a {
    display: inline-block;

    padding: 13px 28px;

    background: #fff;
    color: #111;

    text-decoration: none;

    border-radius: 2px;

    font-size: 15px;
    font-weight: 600;

    transition: all .3s ease;
}

.slide-text a:hover {
    background: #111;
    color: #fff;
}

/* =========================================
   SETAS
========================================= */

.carousel-prev,
.carousel-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, .35);
    color: #fff;

    font-size: 25px;

    cursor: pointer;

    transition: background .3s ease;
}

.carousel-prev {
    left: 25px;
}

.carousel-next {
    right: 25px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, .8);
}

/* =========================================
   INDICADORES
========================================= */

.carousel-dots {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;
    gap: 10px;
}

.dot {
    width: 11px;
    height: 11px;

    padding: 0;

    border: 1px solid #fff;

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: all .3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* =========================================
   CELULAR
========================================= */

@media (max-width: 768px) {

    .hero-carousel {
        height: 70vh;
        min-height: 450px;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-prev {
        left: 12px;
    }

    .carousel-next {
        right: 12px;
    }

    .slide-text {
        width: 82%;
    }

    .slide-text h1 {
        font-size: 2.2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

}

/* ================================
   ÁREA DA LOGOMARCA
================================ */

.logo-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 35px 20px 30px;
}

/* LOGO */

.logo {
    display: block;

    width: 180px;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    margin: 0;
}

.logo {
    width: 180px;
    height: auto;
}

.header {
    width: 100%;
    background: #000;
    text-align: center;
    color: #fff;
}

.logo-area {
    height: 145px;

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

.logo {
    width: 180px;
    height: auto;
    display: block;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 55px;

    padding: 20px 20px 38px;
}

.menu a {
    color: #fff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s;
}

.menu a:hover {
    color: #ccc;
}

/* ================================
   RODAPÉ
================================ */

footer {
    background-color: #000000;
    color: #ffffff;

    width: 100%;

    text-align: center;

    padding: 35px 20px;

    margin-top: 0;
}

footer p {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
}

.footer {
    background: #000;
    color: #fff;

    text-align: center;

    padding: 45px 20px 30px;

    width: 100%;
}

.footer-logo img {
    width: 130px;
    height: auto;

    margin-bottom: 20px;
}

.footer p {
    color: #fff;
    margin: 8px 0;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.7;
}

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

.header {
    width: 100%;
    background: #000;
}

/* Área que contém logo + menu */

.header-container {
    max-width: 1200px;
    height: 140px;

    margin: 0 auto;
    padding: 0 30px;

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


/* ================================
   LOGO
================================ */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.logo img {
    width: 170px;
    height: auto;

    display: block;
}


/* ================================
   MENU
================================ */

.menu {
    display: flex;
    align-items: center;

    gap: 32px;
}

.menu a {
    color: #fff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    white-space: nowrap;

    transition: opacity 0.3s ease;
}

.menu a:hover {
    opacity: 0.7;
}

@media (max-width: 850px) {

    .header-container {
        height: auto;
        min-height: 120px;

        flex-direction: column;
        justify-content: center;

        gap: 25px;

        padding: 25px 20px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .logo img {
        width: 150px;
    }
}

.pacotes{

padding:80px 8%;

background:#F5F2EC;

}

.titulo{

text-align:center;
margin-bottom:60px;

}

.titulo h1{

font-size:45px;

margin-bottom:15px;

}

.cards{

display:flex;

gap:30px;

justify-content:center;

flex-wrap:wrap;

}

.card{

background:#fff;

width:350px;

border-radius:12px;

padding:35px;

box-shadow:0 5px 20px rgba(0,0,0,.10);

transition:.4s;

}

.card:hover{

transform:translateY(-8px);

}

.card h2{

font-size:32px;

margin-bottom:10px;

}

.card h3{

color:#777;

margin-bottom:25px;

}

.card ul{

list-style:none;

padding:0;

}

.card li{

margin-bottom:15px;

line-height:24px;

}

.card a{

display:block;

margin-top:30px;

text-align:center;

padding:15px;

background:#000;

color:#fff;

text-decoration:none;

border-radius:5px;

font-weight:bold;

}

.destaque{

border:3px solid #C9A96E;

transform:scale(1.03);

}

.extras{

padding:80px 8%;

background:#fff;

}

.extras h2{

text-align:center;

margin-bottom:50px;

font-size:38px;

}

.extras-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.extra{

background:#F7F7F7;

padding:30px;

text-align:center;

border-radius:10px;

transition:.4s;

}

.extra:hover{

transform:translateY(-8px);

}

/*=========================================
RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/*=========================================
CONFIGURAÇÃO GERAL
==========================================*/

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#F7F4EE;

    color:#333;

}

/*=========================================
CONTAINER
==========================================*/

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

/*=========================================
BANNER
==========================================*/

.banner-pacotes{

    width:100%;

    height:500px;

    background-image:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url("../images/banner-pacotes.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.banner-conteudo h1{

    font-size:60px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.banner-conteudo p{

    font-size:22px;

    width:700px;

    max-width:90%;

    margin:auto;

    line-height:35px;

}

.botao-banner{

    display:inline-block;

    margin-top:40px;

    padding:16px 45px;

    background:#000;

    color:#FFF;

    text-decoration:none;

    border-radius:5px;

    transition:.4s;

}

.botao-banner:hover{

    background:#C7A567;

}

/*=========================================
INTRODUÇÃO
==========================================*/

.introducao{

    padding:90px 0;

    text-align:center;

}

.introducao h2{

    font-size:42px;

    margin-bottom:30px;

}

.introducao p{

    width:850px;

    max-width:95%;

    margin:auto;

    font-size:18px;

    line-height:32px;

}

/*=========================================
PACOTES
==========================================*/

.pacotes{

    padding:80px 0;

}

.cards{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

}

.card{

    background:#FFF;

    width:340px;

    border-radius:15px;

    padding:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    font-size:34px;

    margin-bottom:10px;

}

.card h4{

    color:#777;

    margin-bottom:30px;

    font-weight:normal;

}

.card ul{

    list-style:none;

}

.card li{

    padding:12px 0;

    border-bottom:1px solid #EEE;

}

.card a{

    display:block;

    margin-top:35px;

    text-align:center;

    background:#000;

    color:white;

    padding:15px;

    text-decoration:none;

    border-radius:5px;

    transition:.3s;

}

.card a:hover{

    background:#C7A567;

}

.destaque{

    border:3px solid #C7A567;

    transform:scale(1.04);

}

.mais-vendido{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    background:#C7A567;

    color:white;

    padding:8px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:bold;

}

/*=========================================
TABELA
==========================================*/

.comparacao{

    padding:90px 0;

}

.comparacao table{

    width:100%;

    border-collapse:collapse;

    background:white;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.comparacao th{

    background:#000;

    color:white;

    padding:18px;

}

.comparacao td{

    padding:18px;

    text-align:center;

    border-bottom:1px solid #EEE;

}

.comparacao tr:hover{

    background:#FAFAFA;

}

/*=========================================
EXTRAS
==========================================*/

.extras{

    padding:90px 0;

}

.lista-extras{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.lista-extras div{

    background:white;

    padding:35px;

    border-radius:12px;

    box-shadow:0 10px 25px rgba(0,0,0,.07);

    transition:.4s;

}

.lista-extras div:hover{

    transform:translateY(-8px);

}

.lista-extras h3{

    margin-bottom:15px;

}

/*=========================================
CTA
==========================================*/

.cta{

    padding:100px 0;

    text-align:center;

}

.cta h2{

    font-size:45px;

    margin-bottom:25px;

}

.cta p{

    font-size:20px;

    margin-bottom:40px;

}

.cta a{

    display:inline-block;

    background:#25D366;

    color:white;

    padding:18px 45px;

    border-radius:6px;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}

.cta a:hover{

    background:#1EAE54;

}

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

@media(max-width:900px){

.banner-conteudo h1{

font-size:42px;

}

.cards{

flex-direction:column;

align-items:center;

}

.card{

width:95%;

max-width:420px;

}

.destaque{

transform:none;

}

.introducao h2{

font-size:34px;

}

.cta h2{

font-size:34px;

}

}


/*====================================================

RESET

====================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;
    background:#F7F4EE;
    color:#333;

}

/*====================================================

CONTAINER

====================================================*/

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/*====================================================

TOP BAR

====================================================*/

.top-bar{

    background:#000;
    color:#FFF;
    font-size:14px;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 0;

}

.top-left a{

    color:#FFF;

    text-decoration:none;

    margin-right:25px;

}

.top-right a{

    color:#FFF;

    margin-left:18px;

    font-size:18px;

    transition:.3s;

}

.top-right a:hover{

    color:#C7A567;

}

/*====================================================

MENU

====================================================*/

.menu-area{

    background:#FFF;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

}

.menu-area .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 0;

}

/*====================================================

LOGO

====================================================*/

.logo img{

    width:180px;

    display:block;

}

/*====================================================

MENU

====================================================*/

.menu ul{

    display:flex;

    list-style:none;

}

.menu li{

    margin-left:35px;

}

.menu a{

    text-decoration:none;

    color:#FFFFFF;

    font-weight:500;

    font-size:15px;

    position:relative;

    transition:.3s;

}

/* Linha animada */

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#C7A567;

    transition:.4s;

}

.menu a:hover{

    color:#C7A567;

}

.menu a:hover::after{

    width:100%;

}



/* =====================================================
   MENU DAS PÁGINAS INTERNAS
   Miguel Roman Fotografia
===================================================== */

.header-interno {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 95px;

    background: #000;

    z-index: 9999;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

}


/* =====================================================
   CONTAINER
===================================================== */

.menu-interno-container {

    width: 92%;

    max-width: 1280px;

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   LOGO
===================================================== */

.logo-interno {

    display: flex;

    align-items: center;

}

.logo-interno img {

    width: 165px;

    height: auto;

    display: block;

}


/* =====================================================
   NAVEGAÇÃO
===================================================== */

.nav-interno ul {

    display: flex;

    align-items: center;

    gap: 30px;

}

.nav-interno li {

    list-style: none;

}

.nav-interno a {

    position: relative;

    display: inline-block;

    padding: 8px 0;

    color: #fff;

    font-family: var(--fonte-texto);

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.3px;

    transition: color 0.3s ease;

}


/* Linha dourada */

.nav-interno a {

    display: inline-block;

    padding: 8px 0;

    color: #fff;

    font-family: var(--fonte-texto);

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.3px;

    text-decoration: none;

    transition: color 0.3s ease;

}

.nav-interno a:hover {

    color: #C6A86A;

}

.nav-interno a:hover::after {

    width: 100%;

}


/* =====================================================
   MENU ATIVO
===================================================== */

.nav-interno a.ativo {

    color: #C6A86A;

}

.nav-interno a.ativo::after {

    width: 100%;

}


/* =====================================================
   BOTÃO HAMBÚRGUER
===================================================== */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    padding: 8px;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    background: transparent;

}

.menu-toggle span {

    display: block;

    width: 26px;

    height: 2px;

    background: #fff;

    transition: 0.3s ease;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .nav-interno ul {

        gap: 20px;

    }

    .nav-interno a {

        font-size: 13px;

    }

    .logo-interno img {

        width: 145px;

    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 850px) {

    .header-interno {

        height: 80px;

    }

    .menu-interno-container {

        width: 90%;

    }

    .logo-interno img {

        width: 135px;

    }


    /* Mostrar botão */

    .menu-toggle {

        display: flex;

        position: relative;

        z-index: 10001;

    }


    /* Menu escondido */

    .nav-interno {

        position: fixed;

        top: 80px;

        right: 0;

        width: 100%;

        height: calc(100vh - 80px);

        background: #000;

        padding: 50px 30px;

        transform: translateX(100%);

        transition: transform 0.4s ease;

        overflow-y: auto;

    }


    /* Menu aberto */

    .nav-interno.aberto {

        transform: translateX(0);

    }


    .nav-interno ul {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;

    }


    .nav-interno li {

        width: 100%;

        text-align: center;

        border-bottom: 1px solid rgba(255,255,255,0.12);

    }


    .nav-interno a {

        width: 100%;

        padding: 18px 10px;

        font-size: 16px;

    }


    .nav-interno a::after {

        display: none;

    }


    /* Animação do botão */

    .menu-toggle.ativo span:nth-child(1) {

        transform: translateY(7px) rotate(45deg);

    }

    .menu-toggle.ativo span:nth-child(2) {

        opacity: 0;

    }

    .menu-toggle.ativo span:nth-child(3) {

        transform: translateY(-7px) rotate(-45deg);

    }

}


/* =====================================================
   CELULARES PEQUENOS
===================================================== */

@media (max-width: 480px) {

    .header-interno {

        height: 72px;

    }

    .logo-interno img {

        width: 120px;

    }

    .nav-interno {

        top: 72px;

        height: calc(100vh - 72px);

    }

}


/* =====================================================
   PÁGINA DE VÍDEOS
   Miguel Roman Fotografia
===================================================== */


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

.video-header {

    width: 100%;

    background: #000;

}


.video-header-inner {

    width: 90%;

    max-width: 1280px;

    min-height: 95px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   LOGO
===================================================== */

.video-logo {

    display: flex;

    align-items: center;

}


.video-logo img {

    width: 170px;

    height: auto;

    display: block;

}


/* =====================================================
   MENU
===================================================== */

.video-menu {

    display: flex;

    align-items: center;

    gap: 34px;

}


.video-menu a {

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition: color .3s ease;

}


.video-menu a:hover {

    color: #b08d45;

}


.video-menu-active {

    color: #b08d45 !important;

}


/* =====================================================
   INTRODUÇÃO
===================================================== */

.video-intro {

    max-width: 950px;

    margin: auto;

    padding: 130px 30px 90px;

    text-align: center;

}


.video-label {

    display: block;

    margin-bottom: 20px;

    color: #b08d45;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 4px;

}


.video-intro h1 {

    margin: 0 0 30px;

    color: #111;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 500;

}


.video-intro p {

    max-width: 680px;

    margin: auto;

    color: #666;

    font-size: 15px;

    line-height: 1.9;

}


/* =====================================================
   GALERIA
===================================================== */

.video-galeria {

    width: 90%;

    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 70px 35px;

}


/* =====================================================
   CARD
===================================================== */

.video-card {

    min-width: 0;

}


/* =====================================================
   PLAYER
===================================================== */

.video-player {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #111;

}


.video-player video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


/* =====================================================
   BOTÃO PLAY
===================================================== */

.video-play {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 70px;

    height: 70px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.8);

    background: rgba(0,0,0,.45);

    color: #fff;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all .35s ease;

}


.video-play span {

    font-size: 19px;

    margin-left: 4px;

}


.video-play:hover {

    background: #000;

    border-color: #b08d45;

    transform:
        translate(-50%, -50%)
        scale(1.08);

}


/* =====================================================
   INFORMAÇÕES
===================================================== */

.video-info {

    padding-top: 25px;

}


.video-number {

    color: #b08d45;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

}


.video-info h2 {

    margin: 12px 0 10px;

    color: #111;

    font-size: 25px;

    font-weight: 500;

}


.video-info p {

    max-width: 520px;

    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

}


/* =====================================================
   CTA
===================================================== */

.video-cta {

    margin-top: 150px;

    padding: 120px 30px;

    background: #f4f2ed;

    text-align: center;

}


.video-cta h2 {

    margin: 0 0 20px;

    color: #111;

    font-size: 42px;

    font-weight: 500;

}


.video-cta p {

    max-width: 550px;

    margin: 0 auto 35px;

    color: #666;

    line-height: 1.8;

}


/* =====================================================
   BOTÃO
===================================================== */

.video-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 220px;

    min-height: 50px;

    padding: 0 30px;

    background: #000;

    color: #fff;

    text-decoration: none;

    border: 1px solid #000;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    cursor: pointer;

    transition: all .3s ease;

}


.video-btn:hover {

    background: #b08d45;

    border-color: #b08d45;

}


/* =====================================================
   CONTATO
===================================================== */

.video-contato {

    padding: 130px 30px;

    background: #fff;

}


.video-contato-inner {

    max-width: 700px;

    margin: auto;

}


.video-contato h2 {

    margin: 0 0 15px;

    color: #111;

    font-size: 42px;

    font-weight: 500;

}


.video-contato-inner > p {

    margin-bottom: 50px;

    color: #666;

    line-height: 1.8;

}


/* =====================================================
   FORMULÁRIO
===================================================== */

.video-form {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}


.video-form-group {

    display: flex;

    flex-direction: column;

}


.video-form-group:nth-child(4) {

    grid-column: 1 / -1;

}


.video-form-group label {

    margin-bottom: 8px;

    color: #333;

    font-size: 12px;

}


.video-form-group input,
.video-form-group select,
.video-form-group textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 15px;

    border: 1px solid #ddd;

    background: #fafafa;

    color: #222;

    font-family: inherit;

    font-size: 13px;

    outline: none;

}


.video-form-group input:focus,
.video-form-group select:focus,
.video-form-group textarea:focus {

    border-color: #b08d45;

}


.video-form .video-btn {

    grid-column: 1 / -1;

    justify-self: start;

}


/* =====================================================
   WHATSAPP
===================================================== */

.video-whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 62px;

    height: 62px;

    border-radius: 50%;

    background: #20c76b;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 30px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

    z-index: 999;

    transition: transform .3s ease;

}


.video-whatsapp:hover {

    transform: scale(1.08);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .video-header-inner {

        flex-direction: column;

        padding: 25px 0;

        gap: 25px;

    }


    .video-menu {

        gap: 20px;

        flex-wrap: wrap;

        justify-content: center;

    }


    .video-intro {

        padding-top: 90px;

    }


    .video-intro h1 {

        font-size: 40px;

    }


    .video-galeria {

        grid-template-columns: 1fr;

        max-width: 700px;

    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {

    .video-header-inner {

        width: 88%;

    }


    .video-logo img {

        width: 145px;

    }


    .video-menu {

        gap: 14px;

    }


    .video-menu a {

        font-size: 12px;

    }


    .video-intro {

        padding:
            80px 25px
            65px;

    }


    .video-intro h1 {

        font-size: 32px;

    }


    .video-intro p {

        font-size: 14px;

    }


    .video-galeria {

        width: 88%;

        gap: 55px;

    }


    .video-cta {

        margin-top: 100px;

        padding: 90px 25px;

    }


    .video-cta h2 {

        font-size: 32px;

    }


    .video-contato {

        padding: 90px 25px;

    }


    .video-contato h2 {

        font-size: 32px;

    }


    .video-form {

        grid-template-columns: 1fr;

    }


    .video-form-group:nth-child(4) {

        grid-column: auto;

    }


    .video-form .video-btn {

        grid-column: auto;

        width: 100%;

    }


    .video-whatsapp {

        width: 55px;

        height: 55px;

        right: 18px;

        bottom: 18px;

    }

}


/* =====================================================
   MENU INTERNO - CELULAR
   NÃO ALTERA O MENU DA PÁGINA INICIAL
===================================================== */

@media (max-width: 768px) {

    /* Cabeçalho das páginas internas */
    .header-interno {
        position: relative;
        width: 100%;
        z-index: 1000;
    }

    /* Container */
    .menu-interno-container {
        position: relative;
    }

    /* Botão das três faixas */
    .header-interno .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);

        width: 42px;
        height: 42px;

        padding: 0;
        margin: 0;

        background: transparent;
        border: none;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;

        cursor: pointer;

        z-index: 1100;
    }

    /* Três faixas */
    .header-interno .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;

        background: #ffffff;

        transition: 0.2s;
    }

    /* Menu fechado */
    .header-interno .nav-interno {
        display: none;
        width: 100%;
    }

    /* Menu aberto */
    .header-interno .nav-interno.menu-aberto {
        display: block;
    }

    /* Lista */
    .header-interno .nav-interno ul {
        display: flex;
        flex-direction: column;

        width: 100%;

        margin: 0;
        padding: 10px 0;

        list-style: none;
    }

    /* Itens */
    .header-interno .nav-interno li {
        width: 100%;
        text-align: center;
    }

    /* Links */
    .header-interno .nav-interno a {
        display: block;

        width: 100%;

        padding: 12px 15px;

        text-decoration: none;
    }

}