/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #6B6B6B;
    background-color: #F5F1EB;
    overflow-x: hidden;
    font-display: swap;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2C2C2C;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #834c1c 0%, #000000 100%);
    color: white;
    box-shadow: 0 4px 15px rgb(192 105 0 / 30%);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgb(192 105 0 / 30%);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 60px !important;
    right: 20px !important;
    z-index: 9999 !important;
    animation: pulse 2s infinite;
    pointer-events: auto !important;
}

.whatsapp-float a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    pointer-events: auto !important;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header */
.header {
    background: linear-gradient(135deg, #F5F1EB 0%, #E8DDD4 100%);
    padding: 2rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.header-title {
    margin-bottom: 1rem;
}

.header-title .highlight {
    color: #D4AF37;
    background: #834c1c;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.header-title .location {
    color: #834c1c;
    font-size: 0.9em;
}

.header-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #6B6B6B;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.crm, .specialty {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.crm {
    color: #D4AF37;
    font-weight: 600;
}

.specialty {
    color: #834c1c;
    font-weight: 500;
}

.header-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;   
    background: linear-gradient(135deg, #E8DDD4 0%, #D4C4B0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6B6B6B;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #6B6B6B;
    font-size: 1.125rem;
}

/* Authority Section */
.authority-section {
    background: white;
}

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

.authority-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #F5F1EB;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.authority-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.authority-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.authority-item h3 {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Specialties Section */
.specialties-section {
    background: #F5F1EB;
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.specialty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.specialty-image {
    height: 200px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.specialty-content {
    padding: 2rem;
}

.specialty-content h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.specialty-content ul {
    list-style: none;
    margin-top: 1rem;
}

.specialty-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.specialty-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #834c1c;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E8DDD4;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2C2C2C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #D4AF37;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #D4AF37;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer ul {
    list-style: none;
    margin: 1rem 0;
}

.faq-answer li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #834c1c;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background: #F5F1EB;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #834c1c;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background: white;
}

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

.about-image .image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 500px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.125rem;
    color: #6B6B6B;
    margin-bottom: 2rem;
}

.about-details h3 {
    color: #D4AF37;
    margin: 2rem 0 1rem 0;
}

.about-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-details li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #834c1c;
    font-weight: bold;
}

/* Location Section */
.location-section {
    background: #F5F1EB;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-item h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #E8DDD4 0%, #D4C4B0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6B6B6B;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #D4AF37;
    font-weight: 600;
}

.urgency-icon {
    font-size: 1.2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

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

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .header-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .credentials {
        flex-direction: row;
        gap: 1rem;
    }
    
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    section {
        padding: 5rem 0;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .header {
        padding: 3rem 0;
    }
    
    .authority-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .final-cta-content h2 {
        font-size: 3rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.cta-button:focus,
.faq-question:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Garantir que o botão do WhatsApp sempre fique visível */
.whatsapp-float {
    position: fixed !important;
    bottom: 60px !important;
    right: 20px !important;
    z-index: 9999 !important;
    display: flex !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float a {
    display: flex !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

