/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec {
    padding: 80px 0;
}

.pad {
    padding: 80px 0;
}

.alt {
    background-color: #f9f9f9;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #8e6841;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: rgba(255, 255, 255, .95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    z-index: 1000;
    transition: all .3s ease;
}

header.scrolled {
    padding: 10px 40px;
    background-color: rgba(255, 255, 255, .98);
}

.contlog {
    display: flex;
    align-items: center;
}

.logo,
.logoverm {
    height: 150px;
    transition: all .3s ease;
}

.logoverm {
    display: none;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color .3s ease;
    position: relative;
}

.menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8e6841;
    transition: width .3s ease;
}

.menu a:hover:after,
.menu a.active:after {
    width: 100%;
}

.menu a:hover,
.menu a.active {
    color: #8e6841;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO INTERNA ===== */
.hero {
    min-height: 55vh;
    display: flex;
    margin-top: 190px;
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
        url('../img/nani-e-lucas-147.jpg') no-repeat center/cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .7);
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 26px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .6);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero,
.btn-hero-outline {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    border: 2px solid #8e6841;
    white-space: nowrap;
}

.btn-hero {
    background: #8e6841;
    color: #fff;
}

.btn-hero:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #333;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #8e6841;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FORMULÁRIOS ===== */
.orcamento, .agendar {
    padding: 80px 0;
}

.orcamento {
    margin: auto;
    width: 80%;
}

.agendar {
    width: 80%;
    margin: auto;
}

.orcamento h2, .agendar h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.subtitulo {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    max-width: 800px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all .3s ease;
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8e6841;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(142, 104, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238e6841' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    background: #8e6841;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    border: 2px solid #8e6841;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #735732;
    border-color: #735732;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(142, 104, 65, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-text,
.btn-loading {
    transition: opacity .3s ease;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.btn.loading .btn-text {
    opacity: 0;
}

.btn.loading .btn-loading {
    opacity: 1;
}

/* ===== MAPA ===== */
.localizacao {
    padding: 80px 0;
    width: 80%;
    margin: auto;
    border-radius: 40px;
    background-color: #f9f9f9;
}

.localizacao h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.mapa-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: transform 0.3s ease;
}
.mapa{
    width: 100%;
}

.mapa-container:hover {
    transform: translateY(-5px);
}

.mapa iframe {
    width: 90%;
    margin: auto;
    height: 400px;
    border: none;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.2rem;
}

.logofot {
    height: 150px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.logofot:hover {
    transform: scale(1.05);
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #8e6841;
    width: 20px;
}

.footer-section.links {
    display: flex;
    flex-direction: column;
}

.footer-section.links a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all .3s ease;
    padding: 4px 0;
}

.footer-section.links a:hover {
    color: #8e6841;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}

.social-icon:hover {
    background: #8e6841;
    transform: translateY(-3px);
}

.footer-cta {
    margin-top: 10px;
}

.footer-cta p {
    margin-bottom: 10px;
    color: #ccc;
}

.btn-footer {
    display: inline-block;
    background: #8e6841;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
}

.btn-footer:hover {
    background: #735732;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #444;
    color: #999;
    font-size: .92rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ===== MENU MOBILE ===== */
.mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu-content {
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.mobile-menu-content a {
    text-decoration: none;
    color: #333;
    font-size: 1.8rem;
    padding: 15px 30px;
    margin: 10px 0;
    text-align: center;
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    border: 2px solid transparent;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    padding: 10px;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-mobile-menu:hover {
    color: #8e6841;
}

.icon-perfil { 
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.icon-perfil:hover {
    color: #8e6841;
}

.mobile-menu-content a:hover {
    background: #8e6841;
    color: #fff;
    transform: translateY(-2px);
    border-color: #8e6841;
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.animate-in {
    animation: fadeUp .6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVIDADE MELHORADA ===== */

/* Tablets grandes (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .form {
        max-width: 700px;
    }
}

/* Tablets médios (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    header {
        padding: 15px 30px;
    }
    
    .logo, .logoverm {
        height: 130px;
    }
    
    .hero {
        min-height: 50vh;
        margin-top: 170px;
        padding-bottom: 50px;
        padding-top: 90px;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 22px;
    }
    
    .form {
        padding: 35px;
        margin: 0 30px;
    }
    
    .orcamento h2, .agendar h2, .localizacao h2 {
        font-size: 2.2rem;
    }
    
    .subtitulo {
        font-size: 1rem;
    }
}

/* Tablets pequenos (600px - 768px) */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    header {
        padding: 12px 25px;
    }
    
    .logo {
        display: none;
    }

    .logoverm {
        display: block;
        height: 110px;
    }

    .hero {
        min-height: 45vh;
        padding-top: 80px;
        margin-top: 130px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .form {
        padding: 30px 25px;
        margin: 0 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .mobile-menu-content a {
        font-size: 1.5rem;
        padding: 12px 25px;
        max-width: 250px;
    }
    
    .mapa-container iframe {
        height: 350px;
    }
}

/* Celulares grandes (480px - 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    header {
        padding: 10px 20px;
    }
    
    .logoverm {
        height: 90px;
    }
    
    .hero {
        min-height: 40vh;
        margin-top: 110px;
        padding-top: 70px;
        padding-bottom: 50px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 8px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 8px 20px;
        font-size: 0.9rem;
        width: 200px;
        max-width: 100%;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .divider {
        margin-bottom: 15px;
    }
    
    .form {
        padding: 25px 20px;
        margin: 0 15px;
        border-radius: 12px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .orcamento h2, .agendar h2, .localizacao h2 {
        font-size: 1.9rem;
    }
    
    .subtitulo {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .footer {
        padding: 50px 0 15px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .logofot {
        height: 120px;
    }
    
    .mapa-container iframe {
        height: 300px;
    }
}

/* Celulares médios (375px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 8px 15px;
    }
    
    .logoverm {
        height: 80px;
    }
    
    .hero {
        min-height: 35vh;
        margin-top: 99px;
        padding-bottom: 50px;
        padding-top: 60px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 6px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 7px 18px;
        font-size: 0.85rem;
        width: 180px;
    }
    
    .sec, .pad {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .form {
        padding: 20px 15px;
        margin: 0 10px;
        border-radius: 10px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .btn-submit {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .orcamento, .agendar, .localizacao {
        padding: 60px 0;
    }
    
    .orcamento h2, .agendar h2, .localizacao h2 {
        font-size: 1.7rem;
    }
    
    .footer {
        padding: 40px 0 10px;
    }
    
    .footer-container {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .logofot {
        height: 100px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .mobile-menu-content a {
        font-size: 1.3rem;
        padding: 10px 20px;
        max-width: 220px;
    }
    
    .mapa-container iframe {
        height: 250px;
    }
}

/* Celulares pequenos (até 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    header {
        padding: 5px 10px;
    }
    
    .logoverm {
        height: 70px;
    }
    
    .hero {
        min-height: 30vh;
        margin-top: 80px;
        padding-top: 50px;
        padding-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 14px;
        line-height: 1.3;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 6px 15px;
        font-size: 0.8rem;
        width: 160px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .form {
        padding: 15px 10px;
        margin: 0 5px;
    }
    
    .orcamento h2, .agendar h2, .localizacao h2 {
        font-size: 1.5rem;
    }
    
    .mobile-menu-content a {
        font-size: 1.1rem;
        padding: 8px 15px;
        max-width: 200px;
    }
    
    .close-mobile-menu {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    .icon-perfil {
        top: 15px;
        left: 15px;
        font-size: 1.2rem;
    }
}

/* Ajustes para orientação paisagem em celulares */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero p {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn-hero, .btn-hero-outline {
        width: auto;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .mobile-menu-content {
        padding: 50px 20px;
        justify-content: flex-start;
    }
    
    .mobile-menu-content a {
        font-size: 1.1rem;
        padding: 8px 15px;
        margin: 5px 0;
    }
}

/* Ajustes para telas muito grandes (acima de 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .form {
        max-width: 900px;
        padding: 50px;
    }
}

/* Impressão */
@media print {
    .menu-icon,
    .btn-hero,
    .btn-hero-outline,
    .social-icons,
    .footer-cta,
    .mobile-menu-content {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    .hero {
        background: none !important;
        color: black;
        min-height: auto;
        padding: 20px 0;
    }
    
    .form {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}