/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f8f8;
    margin: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus, button:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animações */
.animate-slide-up {
    opacity: 0;
    transform: translateY(50px );
    animation: slideUp 1s ease-out 0.5s forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-delay-1 {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.scroll-reveal-delay-2 {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.scroll-reveal-delay-3 {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.scroll-reveal-delay-1.revealed,
.scroll-reveal-delay-2.revealed,
.scroll-reveal-delay-3.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Header - SEMPRE PRETO E VISÍVEL */
.header {
    background: #1a1a1a !important; /* FORÇAR COR PRETA SEMPRE */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 120px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    min-height: 120px;
}

/* Logo ajustada para 100px */
.logo-container .logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    padding: 5px;
    border-radius: 8px;
}

.logo-container .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-links a {
    color: #ffffff !important; /* FORÇAR COR BRANCA SEMPRE */
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #d4af37 !important; /* DOURADO NO HOVER */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta .btn-header {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.header-cta .btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f, #9c7d1a);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
/* Hero Section */
.hero {
    /* ALTERAÇÃO: Adicionando imagem de fundo com uma sobreposição escura */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./midia/fundo.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 120px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero::before {
    /* O efeito de grão foi removido para dar destaque à imagem de fundo */
    content: none;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.3;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    color: #f0f0f0;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f, #9c7d1a);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 120px 20px 100px;
    background: #f8f8f8;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.about-content-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.about-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333333;
    text-align: justify;
    text-indent: 2em;
}

.about-text p:first-child {
    font-weight: 500;
    color: #1a1a1a;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: #1a1a1a;
}

.services-section .section-header h2 {
    color: #d4af37;
}

.services-section .section-header p {
    color: #cccccc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #2d2d2d;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.member-photo {
    margin-bottom: 25px;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #1a1a1a;
}

.member-info h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.member-oab {
    color: #d4af37;
    font-weight: 600;
}

.member-specialty {
    color: #4a4a4a;
    margin-bottom: 15px;
    font-style: italic;
}

.member-email {
    color: #1a1a1a;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.member-email:hover {
    color: #d4af37;
}

/* News Section */
.news-section {
    padding: 100px 20px;
    background: #1a1a1a;
}

.news-section .section-header h2 {
    color: #d4af37;
}

.news-section .section-header p {
    color: #cccccc;
}

.news-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: #2d2d2d;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.news-placeholder p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: #f8f8f8;
    margin-top: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.faq-answer.active {
    max-height: 500px;
    padding: 25px 30px;
}

/* Adicionado para acomodar a seção "Quem Somos" como acordeão */
.about-section .faq-answer.active {
    max-height: 1000px; /* Maior altura para a seção Quem Somos */
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #333333;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: #1a1a1a;
}

.contact-section .section-header h2 {
    color: #d4af37;
}

.contact-section .section-header p {
    color: #cccccc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #2d2d2d;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #d4af37;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
}

.contact-item small {
    color: #999999;
    font-size: 0.85rem;
}

/* Contact Form */
.contact-form {
    background: #2d2d2d;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #d4af37;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #4a4a4a;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.map-section h2 {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.map-section p {
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid #d4af37;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg);
}

.footer-center {
    text-align: left;
}

.footer-section h4 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-icon-small {
    font-size: 1rem;
    width: 20px;
    color: #d4af37;
}

.footer-right {
    text-align: left;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: flex-start;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: #d4af37;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-social img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-social a:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(30deg);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header {
        min-height: 100px;
    }
    
    .header-content {
        padding: 15px 20px;
        min-height: 100px;
    }
    
    .logo-container .logo {
        height: 80px;
    }
    
    .hero {
        padding: 140px 20px 100px;
        min-height: 90vh;
    }
    
    .section-header,
    .about-section,
    .services-section,
    .team-section,
    .contact-section,
    .faq-section,
    .news-section,
    .map-section {
        padding: 60px 20px;
    }
    
    .about-content-box {
        padding: 30px 25px;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-menu ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* Mobile Menu Ativo */
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a !important; /* FORÇAR PRETO NO MOBILE TAMBÉM */
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu.active .nav-links a {
        color: #ffffff !important; /* FORÇAR BRANCO NO MOBILE */
    }
    
    .header-cta.active {
        display: block;
        margin-top: 20px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .menu-open {
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .header {
        min-height: 90px;
    }
    
    .header-content {
        padding: 10px 15px;
        min-height: 90px;
    }
    
    .logo-container .logo {
        height: 70px;
    }
    
    .hero {
        padding: 130px 15px 80px;
        min-height: 80vh;
    }
    
    .btn-primary {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    .about-content-box {
        padding: 25px 20px;
    }
    
    .about-text p {
        text-indent: 1em;
    }
    
    .service-card,
    .team-member {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-reveal,
    .scroll-reveal-delay-1,
    .scroll-reveal-delay-2,
    .scroll-reveal-delay-3 {
        opacity: 1;
        transform: none;
    }
}

/* Estilos dinâmicos adicionais */
.btn-primary, .btn-header {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    z-index: 10000;
    animation: slideInRight 0.5s ease-out;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-group input.error,
.form-group textarea.error {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.error-message {
    color: #d4af37;
    font-size: 0.85rem;
    margin-top: 5px;
}

.touch-device .service-card:hover,
.touch-device .team-member:hover {
    transform: translateY(-5px) scale(1.01);
}

.touch-device .btn-primary:hover,
.touch-device .btn-header:hover {
    transform: translateY(-2px) scale(1.02);
}
/* Estilo para a imagem real do membro da equipe */
.member-photo .member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover; /* Garante que a imagem preencha o círculo sem distorcer */
    border: 4px solid #d4af37; /* Borda dourada para destaque */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Remove o placeholder SVG, pois agora temos a imagem */
.member-photo .photo-placeholder {
    display: none;
}

/* Efeito de hover para a foto */
.team-member:hover .member-photo .member-img {
    transform: scale(1.05);
}
