* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.highlight {
    color: #d4a574;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574, #c19653);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c19653, #d4a574);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
}

.btn-contact {
    background: transparent;
    color: #d4a574;
    padding: 8px 20px;
    text-decoration: none;
    border: 2px solid #d4a574;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #d4a574;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: white;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4a574;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 30px;
}

.hero-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.hero-form input::placeholder {
    color: #999;
}

.hero-form input:focus {
    outline: 2px solid #d4a574;
    background: white;
}

.hero-form button {
    padding: 15px 35px;
    grid-column: 1 / -1;
    font-size: 1.1rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 165, 116, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4a574;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4a574;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4a574, #c19653);
    color: white;
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: white;
    color: #d4a574;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 0 30px;
}

.cta-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #333;
}

.cta-form input::placeholder {
    color: #999;
}

.cta-form input:focus {
    outline: 2px solid white;
}

.cta-form button {
    grid-column: 1 / -1;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.team-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.profile-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #333;
}

.profile-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.profile-content .btn-whatsapp {
    margin-top: 15px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.pricing h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 165, 116, 0.2);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4a574;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4a574;
}

.pricing-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 5px;
}

.price-period {
    color: #999;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
}

.pricing-note p {
    margin-bottom: 20px;
    color: #ccc;
}

.pricing-hours {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hours-item span:first-child {
    font-weight: 600;
    color: #d4a574;
}

.hours-item span:last-child {
    color: #ccc;
    font-size: 0.9rem;
}

.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form button {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

#map {
    border: 2px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #d4a574;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4a574;
}

.footer-services li {
    color: #ccc;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .faq-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-hours {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .btn-contact {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-form,
    .cta-form {
        grid-template-columns: 1fr;
    }
    
    .about-text h2,
    .services h2,
    .faq-text h2,
    .pricing h2,
    .contact h2,
    .map-section h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-profile {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    
    .profile-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .pricing-hours {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about,
    .services,
    .team,
    .faq,
    .pricing,
    .contact,
    .map-section {
        padding: 60px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .about-text h2,
    .services h2,
    .team h2,
    .faq-text h2,
    .pricing h2,
    .contact h2,
    .map-section h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .team-member {
        padding: 20px;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.service-card,
.pricing-card,
.team-member {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.animate,
.pricing-card.animate,
.team-member.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* WhatsApp Chat Inline */
.whatsapp-modal {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0) translateY(20px);
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

.whatsapp-modal.active {
    display: flex;
    transform: scale(1) translateY(0);
}

.whatsapp-form {
    background: white;
    padding: 20px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.whatsapp-form-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #25d366;
    color: white;
    margin: -20px -20px 20px -20px;
    border-radius: 15px 15px 0 0;
}

.whatsapp-form-header svg {
    width: 35px;
    height: 35px;
    fill: white;
    margin-right: 12px;
}

.whatsapp-form-header h3 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.whatsapp-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.whatsapp-form-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.whatsapp-chat-area {
    flex: 1;
    background: #e5ddd5;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="a" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23a)"/></svg>');
    padding: 15px;
    overflow-y: auto;
    margin: 0 -20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.whatsapp-welcome-message {
    background: white;
    padding: 12px 16px;
    border-radius: 15px 15px 15px 5px;
    margin-bottom: 10px;
    max-width: 80%;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.4;
}

.whatsapp-form-inputs {
    background: white;
    padding: 15px 20px;
    margin: 0 -20px -20px -20px;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-form input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.whatsapp-form input:focus {
    outline: none;
    border-color: #25d366;
}

.whatsapp-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: none;
    height: 40px;
    transition: border-color 0.3s ease;
}

.whatsapp-form textarea:focus {
    outline: none;
    border-color: #25d366;
}

.whatsapp-submit {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.whatsapp-submit:hover {
    background: #20ba5a;
}

.whatsapp-submit svg {
    width: 16px;
    height: 16px;
    fill: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 30px;
        right: 30px;
        font-size: 26px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-modal {
        bottom: 100px;
        right: 20px;
        left: 20px;
        width: auto;
        height: 400px;
    }
    
    .whatsapp-form {
        padding: 15px;
    }
    
    .whatsapp-form-inputs {
        padding: 12px 15px;
        margin: 0 -15px -15px -15px;
    }
}
