/* Variáveis e Reset */
:root {
    --primary: #8B0000;
    --secondary: #500000;
    --light: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #333333;
    --light-gray: #F5F5F5;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: TheSeasons, Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: var(--light);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

@font-face {
    font-family: Mestizzo;
    src: url('../fonts/Mestizo_Font.woff2') format('woff2'),
        url('../fonts/Mestizo_Font.woff') format('woff');
}

@font-face {
    font-family: TheSeasons;
    src: url('../fonts/TheSeasonsRegular.woff2') format('woff2'),
        url('../fonts/TheSeasonsRegular.woff') format('woff');
}

/* Utilitários */
.fonte-the-seasons {
    font-family: TheSeasons, Arial, Helvetica, sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin: 0;
}

.fonte-mestizo {
    font-family: Mestizzo, Arial, Helvetica, sans-serif;
    font-size: 5.5rem;
    margin: 0;
    font-weight: normal;
}

.caracter-especial {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin: 0;
}

.fonte-normal {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.bg-dark {
    background-color: rgba(10, 10, 10, 0.9);
}

.section-title {
    font-family: TheSeasons, Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--light);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto;
    border-radius: 2px;
}

.btn {
    font-family: TheSeasons, Arial, Helvetica, sans-serif;
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-success {
    background: #28a745 !important;
}

/* Header e Navegação */
#header-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 1rem 0;
}

.menu-items li {
    margin: 0 1.2rem;
}

.menu-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.menu-link:hover {
    color: var(--primary);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.menu-link:hover::after {
    width: 100%;
}

.logo-item {
    margin: 0 2rem;
}

#img-logo {
    width: 130px;
    height: auto;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

#img-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* Hero Section */
#section-principal {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1611095772763-5b0d5adb78f7?q=80&w=1000') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
}

.hero-content h1 {
    letter-spacing: 3px;
    margin: 0.5rem 0;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-content .btn {
    animation: fadeIn 1s ease 1s both;
}

/* About Section */
.about-content {
    text-align: center;
}

.texto-essencia {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1100px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(139, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.about-card:hover i {
    transform: scale(1.2);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.texto-about-card {
    font-size: 1rem;
}

.cta-text {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 3rem;
    font-weight: 700;
    color: whitesmoke;
}

/* Team Section */
.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
    justify-content: center;
}

.team-member.reverse {
    flex-direction: row-reverse;
}

.member-image {
    flex: 0 0 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.member-image:hover::before {
    opacity: 0.2;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.member-image:hover img {
    transform: scale(1.05);
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.member-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.member-info p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-more {
    text-align: center;
    margin: 2rem 0;
}

/* Form Section */
#form-orcamento {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.8);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--primary);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: var(--light);
    border-radius: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

#btn-enviar {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 15px;
}

/* Address Section */
.address-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.address-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.address-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.address-info i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.5rem;
    min-width: 30px;
}

.span-endereco {
    font-size: 1rem;
}

.address-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.address-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-method {
    text-align: center;
    background: rgba(30, 30, 30, 0.8);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--primary);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-method i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-method:hover i {
    transform: scale(1.2);
}

.contact-method h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-method p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Footer */
#footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--primary);
}

.menu-footer {
    display: flex;
    gap: 30px;
}

.social-icon {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
}

.footer-icon {
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease;
}

.social-icon:hover .footer-icon {
    color: var(--primary);
}

/* Logo de fundo */
#logo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/logo-png.PNG');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    z-index: -1;
    opacity: 0.03;
    filter: blur(1px);
    pointer-events: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    max-height: 80vh;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.9);}
    to {transform: scale(1);}
}

#imgCaption {
    margin: 15px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    font-size: 1.2em;
    padding: 10px 0;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1200px) {
    .fonte-mestizo {
        font-size: 4.5rem;
    }
    
    .fonte-the-seasons {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .menu-items li {
        margin: 0 0.8rem;
    }
    
    .address-content {
        flex-direction: column;
        text-align: center;
    }
    
    .address-info p {
        justify-content: center;
    }
    
    .team-member, 
    .team-member.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .member-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }
    
    .member-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #header-menu {
        padding: 1rem 0;
    }
    
    .menu-items {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        width: 70%;
        max-width: 300px;
        padding-top: 80px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .menu-items.active {
        right: 0;
    }
    
    .menu-items li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .menu-items.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .menu-items.active li:nth-child(1) { transition-delay: 0.1s; }
    .menu-items.active li:nth-child(2) { transition-delay: 0.2s; }
    .menu-items.active li:nth-child(3) { transition-delay: 0.3s; }
    .menu-items.active li:nth-child(4) { transition-delay: 0.4s; }
    .menu-items.active li:nth-child(5) { transition-delay: 0.5s; }
    .menu-items.active li:nth-child(6) { transition-delay: 0.6s; }
    
    .logo-item {
        display: none;
    }
    
    .fonte-mestizo {
        font-size: 3.5rem;
    }
    
    .fonte-the-seasons {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    #form-orcamento {
        padding: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .fonte-mestizo {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-card i {
        font-size: 2.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .member-image {
        max-width: 300px;
    }
    
    .menu-items {
        width: 80%;
    }
    
    .address-map {
        height: 300px;
    }
    
    .menu-footer {
        gap: 20px;
    }
    
    .footer-icon {
        font-size: 1.8rem;
    }
    
    .hero-content span {
        display: block;
    }
    
    .caracter-especial {
        display: none;
    }
}

