@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Vermelho escuro (principal) */
    --primary: #8b0000;          /* dark red */
    --primary-dark: #5c0000;

    /* Azul neon/frio (secundário) */
    --secondary: #0a1a2f;        /* azul bem escuro */
    --accent: #0d47a1;           /* azul intenso */
    --accent-2: #2979ff;         /* azul neon */

    /* Backgrounds */
    --bg: #050505;
    --bg-light: #0f1115;
    --card-bg: #0c0e13;

    /* Texto */
    --text: #ffffff;
    --text-muted: #9aa0a6;

    /* Bordas */
    --border: #1f2933;

    /* Estados */
    --success: #00c853;
    --whatsapp: #25D366;
    --instagram: #E4405F;

    /* Layout */
    --container: 1200px;

    /* Sombra com vibe neon */
    --shadow: 0 0 25px rgba(41, 121, 255, 0.35),
              0 0 40px rgba(139, 0, 0, 0.25);

    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Didot';
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Montserrat', sans-serif; */
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER MODERNO */
.site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 153, 0, 0.1);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 15px 0;
}

.header-inner nav{
    text-align: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.iconesuperior {
    width: 50px;
    height: 50px;
    transition: var(--transition);
}

.iconesuperior:hover {
    transform: rotate(15deg) scale(1.1);
}

#pheader {
    color: var(--text);
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAVEGAÇÃO MODERNA */
.nav {
    display: flex;
    gap: 5px;
    margin-left: auto;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 153, 0, 0.1);
    transform: translateY(-2px);
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    /* font-family: 'Montserrat', sans-serif; */
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent-2));
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.btn-cta {
    background: linear-gradient(45deg, var(--primary), var(--accent-2));
    color: var(--secondary);
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

.btn-call {
    background: var(--text);
    color: var(--secondary);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

/* EFEITOS */
.pulse-effect {
    animation: pulse 2s infinite;
}

.glow-effect {
    box-shadow: 0 0 20px --primary;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 --primary; }
    70% { box-shadow: 0 0 0 10px rgba(255, 153, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0); }
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right,  rgb(0, 0, 0), rgba(0, 0, 0, 0)),
                url('media/fundo\ hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: relative;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, --primary, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-title {
    font-family: 'Didot';
    font-weight: 50;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,153,0,0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin: 0;
}

.stat-card p {
    margin: 0;
    color: var(--text-muted);
}

/* SECTION STYLES */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text);
}

.feature i {
    color: var(--primary);
}

.mission {
    background: rgba(76, 0, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-top: 30px;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* SERVICES SECTION */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent-2));
    z-index: 1;
}

.service-card.premium {
    border: 2px solid var(--accent-2);
    box-shadow: 0 0 30px rgba(41, 121, 255, 0.2);
}

.service-card.premium::before {
    height: 6px;
    background: linear-gradient(90deg, var(--accent-2), var(--primary));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.premium .service-icon {
    background: rgba(41, 121, 255, 0.15);
    color: var(--accent-2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* CONTAINER DE PREÇO - NOVO DESIGN */
.price-container {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    padding: 18px;
    width: 100%;
    margin-top: auto;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover .price-container {
    border-color: var(--primary);
    background: rgba(139, 0, 0, 0.08);
    transform: scale(1.02);
}

.price-container.highlight {
    border-color: var(--success);
    background: rgba(0, 200, 83, 0.1);
}

.price-container.premium {
    border-color: var(--accent-2);
    background: rgba(41, 121, 255, 0.1);
}

.price-container.free {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

/* VALOR DO PREÇO */
.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1;
    position: relative;
}

.price-container.free .price-value {
    color: #25D366;
    font-size: 1.8rem;
}

.price-value::before {
    content: 'A partir de';
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 4px;
}

.price-container.highlight .price-value::before {
    content: 'Combo especial';
    color: var(--success);
}

.price-container.premium .price-value::before {
    content: 'Serviço premium';
    color: var(--accent-2);
}

/* BADGES E TAGS DE PREÇO */
.price-tag,
.price-save,
.price-premium,
.price-technique,
.price-quick,
.price-additional,
.price-cortesia,
.price-age {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-tag {
    background: linear-gradient(45deg, var(--primary), #ff6b35);
    color: white;
}

.price-save {
    background: var(--success);
    color: white;
}

.price-premium {
    background: linear-gradient(45deg, var(--accent-2), #2979ff);
    color: white;
}

.price-technique {
    background: rgba(139, 0, 0, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.price-quick {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.price-additional {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid #9e9e9e;
}

.price-cortesia {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 1px solid #25D366;
}

.price-age {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid #2196f3;
    text-transform: none;
}

/* COMBO DE PREÇOS */
.price-combo {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-combo span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 5px 0;
    position: relative;
    padding-left: 15px;
}

.price-combo span::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* EFEITO DE DESTAQUE PARA PREMIUM */
.premium .price-value {
    position: relative;
    overflow: hidden;
}

.premium .price-value::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ANIMAÇÃO PARA PREÇOS */
.price-container {
    animation: pricePulse 4s infinite alternate;
}

@keyframes pricePulse {
    0% {
        box-shadow: 0 0 0 rgba(139, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 15px rgba(139, 0, 0, 0.1);
    }
}

/* GALERIA ESTÁTICA */
.gallery-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text);
    /* font-family: 'Bebas Neue', sans-serif; */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px --primary;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 1;
    transition: var(--transition);
}

.overlay-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.overlay-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Estilo para diferentes tamanhos de galeria */
.gallery-item:nth-child(odd) {
    height: 320px;
}

.gallery-item:nth-child(even) {
    height: 280px;
}

.gallery-item .lightbox-trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover .lightbox-trigger {
    opacity: 1;
    transform: scale(1);
}

.gallery-item .lightbox-trigger:hover {
    background: var(--primary);
}

/* OWNER SECTION */
/* .owner-section {
    background: var(--bg);
} */

.owner-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    border: 1px solid var(--border);
    max-width: 1000px;
    margin: 0 auto;
}

.owner-image {
    position: relative;
}

.proprietario-foto {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.owner-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--instagram);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.owner-badge:hover {
    background: #d32f5e;
    transform: translateX(-50%) scale(1.05);
}

.owner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.owner-header h2 {
    font-size: 2.5rem;
    color: var(--text);
}

.owner-experience {
    background: rgba(255,153,0,0.1);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.owner-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.owner-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.skill-tag {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.owner-quote {
    background: rgba(255,153,0,0.1);
    padding: 35px 35px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    margin-top: 30px;
    position: relative;
    font-style: italic;
}

.owner-quote i:first-child {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

/* LOCATION SECTION */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.location-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.detail-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.detail-value {
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
}

.location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-map h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.localizacao-mapa {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* CTA SECTION */

.cta-card {
    border-top: 5px solid --primary;
    background: var(--secondary);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
    background: var(--secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
}

.footer-brand h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin: 0;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.link-group p {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.footer-social h4 {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon.whatsapp {
    background: var(--whatsapp);
}

.social-icon.instagram {
    background: var(--instagram);
}

.social-icon.calendar {
    background: var(--primary);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-credits i {
    color: #ff4757;
}

/* WHATSAPP FLOAT */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ANIMAÇÕES */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hidden.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.show {
    opacity: 1;
    transform: translateX(0);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* RESPONSIVIDADE */

/* TABLET (1024px para baixo) */
@media (max-width: 900px) {
    /* Layouts de grid */
    .about-grid,
    .owner-card,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Ajustes específicos para tablet */
    .owner-card {
        padding: 30px;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Galeria - 3 colunas */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Serviços - 2 colunas fixas */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .service-card {
        max-width: 100%;
    }
    
    /* Header */
    .header-inner {
        padding: 12px 20px;
    }
    
    .nav {
        gap: 3px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    /* Estatísticas do hero */
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-card {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    .hero{
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        background: linear-gradient(to bottom,  rgba(0, 0, 0, 0.589), rgba(48, 13, 13, 0)),
                    url('media/foto\ do\ hero\ pro\ media.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: relative;
        margin-top: 0;
    }

    .hero-stats{
        display: none;
    }
    .reveal-left{
        display: none;
    }
    hero-text {
            display: none;
            margin: 0 auto;
        }

    .hero-content {
        padding: 100px 0 60px;
        text-align: center;
    }

    .link-group h4{
        text-align: left;
    }

    .footer-brand{
        text-align: auto;
    }

    .footer-social{
        text-align: left;
    }

}

/* TABLET PEQUENA / MOBILE GRANDE (768px para baixo) */
@media (max-width: 768px) {
    /* Seções principais */
    .section {
        padding: 60px 0;
    }
    
    section {
        padding: 0 15px;
    }
    
    /* Header mobile */
    .header-inner {
        padding: 10px 15px;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .logo-wrapper {
        order: 1;
    }
    
    .mobile-menu-btn {
        order: 2;
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-top: 1px solid rgba(255,153,0,0.2);
        backdrop-filter: blur(10px);
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
    }
    
    #agenda {
        display: none;
    }
    
    .site-header{
        height: 50px;
        box-shadow: 0 0 15px black;
    }
    /* Hero section mobile */

    .hero{
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        background: linear-gradient(to top,  rgba(11, 0, 70, 0.151), rgba(48, 13, 13, 0)),
                    url('media/foto\ do\ hero\ pro\ media.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: relative;
        margin-top: 0;
    }

    .hero-stats{
        display: none;
    }
    .reveal-left{
        display: none;
    }
    hero-text {
            display: none;
            margin: 0 auto;
        }

    .hero-content {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    
    
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 280px;
    }
    
    /* Galeria - 2 colunas */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-item:nth-child(odd),
    .gallery-item:nth-child(even) {
        height: 250px;
    }
    
    /* Serviços - centralizados */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
        justify-content: center;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Cards de proprietário e localização */
    .owner-card {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .owner-image {
        order: 1;
    }
    
    .owner-info {
        order: 2;
    }
    
    .proprietario-foto {
        height: 300px;
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
    }
    
    .owner-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Localização mobile */
    .location-grid {
        gap: 30px;
    }
    
    .location-card {
        padding: 25px 20px;
    }
    
    .location-card h2 {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .localizacao-mapa {
        height: 300px;
    }
    
    /* CTA mobile */
    .cta-card {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    /* Footer mobile */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .link-group h4{
        text-align: left;
    }

    .footer-brand{
        text-align: auto;
    }

    .footer-social{
        text-align: left;
    }
    
    /* Botão WhatsApp flutuante */
    .float-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

/* MOBILE PEQUENA (480px para baixo) */
@media (max-width: 480px) {
    /* Tipografia mobile */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-highlight {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    /* Galeria - 1 coluna */
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    /* Serviços - card único */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto 40px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Proprietário */
    .owner-card {
        padding: 20px 15px;
        margin: 0;
    }
    
    .proprietario-foto {
        height: 250px;
        max-width: 250px;
    }
    
    .owner-header h2 {
        font-size: 1.8rem;
    }
    
    .owner-experience {
        align-self: flex-start;
    }
    
    .owner-skills {
        justify-content: center;
    }
    
    /* Localização */
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .detail-item i {
        margin-top: 0;
    }
    
    .localizacao-mapa {
        height: 250px;
    }
    
    /* CTA pequeno */
    .cta-card {
        padding: 30px 15px;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    /* Container mobile */
    .container {
        padding: 0 15px;
    }
}

/* MOBILE MUITO PEQUENA (360px para baixo) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-link {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .logo-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 1.1rem;
    }
    
    .gallery-item {
        height: 240px;
    }
}

/* DESKTOP GRANDE (1400px para cima) */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .container {
        max-width: 1300px;
    }
    
    .hero-content {
        padding: 150px 0 100px;
    }
}

/* DESKTOP MUITO GRANDE (1920px para cima) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
