/* ========================================
   CARICA BARBERSHOP - BARBEARIA MODERNA
   Stylesheet Principal - Tema Amarelo
   ======================================== */

/* ----------------------------------------
   VARIÁVEIS DE CORES - TEMA AMARELO
   ---------------------------------------- */
:root {
    --yellow: #FFD700;
    --yellow-dark: #E6C200;
    --yellow-light: #FFE44D;
    --yellow-pale: #FFF8DC;
    --black: #1a1a1a;
    --black-light: #2d2d2d;
    --black-lighter: #3d3d3d;
    --gray-dark: #555555;
    --gray: #777777;
    --gray-light: #999999;
    --white: #ffffff;
    --off-white: #fafafa;
}

/* ----------------------------------------
   RESET E ESTILOS BASE
   ---------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Raleway', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----------------------------------------
   NAVBAR FIXA
   ---------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.98);
    padding: 12px 20px;
    border-bottom: 2px solid var(--yellow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1003;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--yellow);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    display: none;
}

.nav-menu {
    display: none;
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-link:hover .logo-img {
        transform: scale(1.05);
    }
    
    .nav-menu {
        display: flex;
        gap: 35px;
    }
    
    .nav-menu a {
        color: var(--white);
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        position: relative;
        padding: 5px 0;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--yellow);
        transition: width 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--yellow);
    }
    
    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Mobile Menu Toggle */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1003;
        padding: 10px;
        margin-right: -10px;
    }
    
    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: var(--yellow);
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Mobile Menu - Side Drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background: var(--black);
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

.mobile-menu.active .mobile-menu-close {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 60px 0 20px;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav-menu a {
    display: block;
    padding: 25px 30px;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
}

.mobile-nav-menu a:active {
    background: var(--yellow);
    color: var(--black);
}

.mobile-nav-menu a.active {
    background: rgba(255, 215, 0, 0.15);
    color: var(--yellow);
}

/* Close button styles */
.mobile-menu-close {
    display: none;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-open .menu-toggle {
    position: fixed;
    top: 15px;
    right: 20px;
}

.mobile-menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ----------------------------------------
   PAGE HEADER
   ---------------------------------------- */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--yellow);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ----------------------------------------
   SECÇÃO HERO
   ---------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--yellow);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--yellow);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

/* ----------------------------------------
   BOTÕES
   ---------------------------------------- */
.btn {
    display: inline-block;
    padding: 16px 45px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.1rem;
}

/* ----------------------------------------
   TÍTULOS DE SECÇÕES
   ---------------------------------------- */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--black);
}

.section-title.title-light {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
}

/* ----------------------------------------
   SECÇÃO SERVIÇOS
   ---------------------------------------- */
.servicos {
    padding: 120px 0;
    background: var(--off-white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.servico-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.servico-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--black);
}

.servico-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.servico-preco {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow-dark);
}

/* ----------------------------------------
   SECÇÃO SOBRE
   ---------------------------------------- */
.sobre {
    padding: 120px 0;
    background: var(--black);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-texto .section-title {
    text-align: left;
    color: var(--white);
}

.sobre-descricao {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.sobre-valores {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.valor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.valor-icone {
    font-size: 1.5rem;
}

.valor-texto {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-imagem {
    display: flex;
    justify-content: center;
}

.imagem-frame {
    width: 350px;
    height: 350px;
    border: 2px solid var(--yellow);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.imagem-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--yellow);
    border-radius: 5px;
    z-index: -1;
}

.sobre-logo {
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
}

/* ----------------------------------------
   SECÇÃO EQUIPA
   ---------------------------------------- */
.equipa {
    padding: 120px 0;
    background: var(--off-white);
}

.equipa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.equipa-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.4s ease;
}

.equipa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.equipa-foto {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--yellow);
}

.equipa-imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipa-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--black);
}

.equipa-especialidade {
    font-size: 0.9rem;
    color: var(--yellow-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.equipa-bio {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ----------------------------------------
   SECÇÃO RESERVAS
   ---------------------------------------- */
.reservas {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    text-align: center;
}

.reservas-content {
    max-width: 100%;
    margin: 0 auto;
}

.reservas-texto {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.booking-iframe-container {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.booking-iframe-container iframe {
    display: block;
    min-height: 600px;
}

.booking-direct-link {
    text-align: center;
    margin-top: 20px;
}

.booking-direct-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ----------------------------------------
   FORMULÁRIO DE MARCAÇÕES
   ---------------------------------------- */
.booking-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFD700' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--yellow);
    flex-shrink: 0;
}

.link-termos {
    color: var(--yellow);
    text-decoration: underline;
}

.link-termos:hover {
    color: var(--yellow-light);
}

.booking-form .btn {
    width: 100%;
    margin-top: 10px;
}

.booking-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message,
.error-message,
.unavailable-message {
    margin-top: 40px;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.success-icon,
.unavailable-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.error-icon {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.unavailable-message {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.unavailable-icon {
    color: #f1c40f;
}

.success-message h3,
.error-message h3,
.unavailable-message h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.success-message p,
.error-message p,
.unavailable-message p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.success-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: left;
}

.success-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* ----------------------------------------
   SECÇÃO GALERIA
   ---------------------------------------- */
.galeria {
    padding: 120px 0;
    background: var(--white);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
    background: var(--black-lighter);
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.galeria-item:hover::after {
    opacity: 1;
}

/* ----------------------------------------
   LIGHTBOX
   ---------------------------------------- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #c4a26e;
}

/* ----------------------------------------
   SECÇÃO PRODUTOS (PÁGINA)
   ---------------------------------------- */
.produtos-page {
    padding: 150px 0 80px;
    background: var(--off-white);
    min-height: 100vh;
}

.produtos-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.produto-item {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.produto-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.produto-foto {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: var(--black-lighter);
    overflow: hidden;
}

.produto-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produto-item:hover .produto-foto img {
    transform: scale(1.1);
}

.foto-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--gray-light);
    gap: 8px;
}

.foto-placeholder i {
    font-size: 1.5rem;
}

.foto-placeholder span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.produto-info {
    padding: 20px 25px;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.produto-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.produto-preco {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--yellow-dark);
}

/* Responsive */
@media (max-width: 600px) {
    .produto-item {
        flex-direction: column;
        text-align: center;
    }
    
    .produto-foto {
        width: 100%;
        height: 150px;
    }
    
    .produto-info {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}

/* ----------------------------------------
   SECÇÃO CONTACTO
   ---------------------------------------- */
.contacto {
    padding: 120px 0;
    background: var(--off-white);
}

.contacto-centralizado {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacto-info-center {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: center;
    max-width: 500px;
}

.contacto-info-center .contacto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contacto-icono {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contacto-detalhes h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--black);
}

.contacto-detalhes p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ----------------------------------------
   RODAPÉ
   ---------------------------------------- */
.footer {
    background: var(--black);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-direitos {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 25px;
}

.social-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-link:hover {
    color: var(--yellow);
}

/* ----------------------------------------
   FLOATING SOCIAL MEDIA BUTTONS
   ---------------------------------------- */
.social-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 900;
}

.social-float-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
}

.social-float-btn::before {
    content: attr(title);
    position: absolute;
    right: 55px;
    background: var(--yellow);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-float-btn:hover::before,
.social-float-btn:active::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.social-float-btn:hover,
.social-float-btn:active {
    transform: scale(1.1);
}

.social-float-btn.whatsapp {
    background: #25D366;
}

.social-float-btn.whatsapp:hover {
    background: #20BD5C;
}

.social-float-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-float-btn.instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #8a3ab9);
}

.social-float-btn.facebook {
    background: #1877F2;
}

.social-float-btn.facebook:hover {
    background: #0d65d9;
}

.social-float-btn.youtube {
    background: #FF0000;
}

.social-float-btn.youtube:hover {
    background: #cc0000;
}

.social-float-btn.tiktok {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-float-btn.tiktok:hover {
    background: #333333;
}

/* ----------------------------------------
   ANIMAÇÕES
   ---------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ----------------------------------------
   DESIGN RESPONSIVO (MOBILE)
   ---------------------------------------- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sobre-texto .section-title {
        text-align: center;
    }
    
    .sobre-valores {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sobre-imagem {
        order: -1;
    }
    
    .imagem-frame {
        width: 280px;
        height: 280px;
    }
    
    .equipa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1001;
        display: flex;
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 25px;
        width: 100%;
        height: 70px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        background: transparent;
        cursor: pointer;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(255, 215, 0, 0.1);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .servico-card {
        padding: 35px 25px;
    }
    
    .sobre-valores {
        gap: 20px;
    }
    
    .valor {
        flex-direction: column;
        text-align: center;
    }
    
    .equipa-grid {
        grid-template-columns: 1fr;
    }
    
    .equipa-card {
        padding: 30px 20px;
    }
    
    .contacto-centralizado {
        padding: 0 20px;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    .servico-card {
        padding: 30px 20px;
    }
    
    .servico-icon {
        font-size: 2.5rem;
    }
    
    .servico-preco {
        font-size: 1.5rem;
    }
    
    .imagem-frame {
        width: 200px;
        height: 200px;
    }
    
    .sobre-logo {
        max-width: 150px;
        max-height: 150px;
    }
    
    .equipa-foto {
        width: 120px;
        height: 120px;
    }
    
    .booking-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .success-message,
    .error-message,
    .unavailable-message {
        padding: 25px 15px;
    }
    
    .success-icon,
    .error-icon,
    .unavailable-icon {
        font-size: 3rem;
    }
}
