/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: logoScale 2s ease-in-out infinite alternate;
}

.logo-text-preloader {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.logo-subtitle-preloader {
    font-size: 0.9rem;
    font-weight: 400;
    color: #D2691E;
    letter-spacing: 0.3em;
    animation: subtitlePulse 1.5s ease-in-out infinite;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(210, 105, 30, 0.2);
    border-radius: 2px;
    margin: 2rem auto 1rem;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #D2691E, #B8651A);
    border-radius: 2px;
    animation: loadingProgress 2.5s ease-in-out infinite;
}

.loading-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    animation: textFade 1.5s ease-in-out infinite alternate;
}

/* Preloader Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoScale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(210, 105, 30, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(210, 105, 30, 0.6);
    }
}

@keyframes subtitlePulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
        transform: translateX(-100%);
    }
    50% {
        width: 100%;
        transform: translateX(0%);
    }
    100% {
        width: 100%;
        transform: translateX(100%);
    }
}

@keyframes textFade {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Hide main content during preloader */
body.loading {
    overflow: hidden;
}

body.loading .header,
body.loading .main,
body.loading .footer {
    visibility: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 20px;
    color: #D2691E;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D2691E;
}

.form-button {
    width: 100%;
    background: #D2691E;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-button:hover {
    background: #B8651A;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-subtitle {
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icon {
    background: #555;
    color: #ccc;
}

.footer-social .social-icon:hover {
    background: #D2691E;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-details {
        justify-content: center;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}



/* Service Catalog Section */
.service-catalog {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.service-catalog .section-title {
    margin-bottom: 60px;
    font-size: 2.8em;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.service-catalog .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #d9534f; /* Cor de destaque */
    border-radius: 2px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.catalog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.05);
}

.catalog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-card-content h3 {
    font-size: 1.8em;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.catalog-card-content p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.catalog-card-price {
    font-size: 1.4em;
    color: #d9534f; /* Cor de destaque */
    font-weight: 700;
    margin-top: 15px;
}

.catalog-card-price span {
    font-size: 0.8em;
    color: #888;
    font-weight: 400;
}

.catalog-card-button {
    display: inline-block;
    background-color: #d9534f; /* Cor de destaque */
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.catalog-card-button:hover {
    background-color: #c0392b;
}

/* Responsive adjustments for catalog */
@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .service-catalog .section-title {
        font-size: 2.2em;
    }

    .catalog-card-content h3 {
        font-size: 1.6em;
    }

    .catalog-card-content p {
        font-size: 0.95em;
    }

    .catalog-card-price {
        font-size: 1.2em;
    }
}


