/* ===== CUSTOM CSS VARIABLES ===== */
:root {
    --primary-color: #C8A882;
    --primary-dark: #B8956F;
    --secondary-color: #4A4A4A;
    --accent-color: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.btn-primary {
    background-color: #DEAB52;
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-light{
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color:#3B3B3B !important;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(74, 74, 74, 0.98) !important;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: #DEAB52 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.whatsapp-link{
    text-decoration: none;
    color: #fff;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ===== INTERNAL PAGES STYLES ===== */

/* Hero Section for Internal Pages */
.hero-section-internal {
    background: linear-gradient(rgba(74, 74, 74, 0.8), rgba(42, 42, 42, 0.8)), 
                url('../images/banner.png') center/cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section-internal .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 74, 74, 0.9), rgba(42, 42, 42, 0.7));
}

/* ===== PROFESSIONALS PAGE STYLES ===== */

.professional-card-detailed {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.professional-image-container {
    position: relative;
    overflow: hidden;
}

.professional-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.professional-card-detailed:hover .professional-image {
    transform: scale(1.05);
}

.professional-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 168, 130, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.professional-card-detailed:hover .professional-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #C8A882;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4A4A4A;
    color: #fff;
    transform: scale(1.1);
}

.professional-info {
    padding: 25px;
}

.professional-name {
    color: #4A4A4A;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.professional-title {
    color: #C8A882;
    font-weight: 600;
    margin-bottom: 5px;
}

.professional-oab {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0px;
}

.professional-specialties {
    margin-bottom: 15px;
}

.professional-specialties .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
}

.professional-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.professional-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.professional-actions .btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-download {
    background: linear-gradient(135deg, #C8A882, #B8986E);
    border: none;
    color: #fff;
}

.btn-download:hover {
    background: linear-gradient(135deg, #B8986E, #A8885E);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 168, 130, 0.4);
}

.btn-contact {
    border: 2px solid #C8A882;
    color: #C8A882;
}

.btn-contact:hover {
    background: #C8A882;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== ABOUT US PAGE STYLES ===== */

.about-image-container {
    position: relative;
}

.about-stats-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 250px;
}

.stat-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #C8A882;
}

.stat-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C8A882;
}

.stat-card p {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Pillar Cards */
.pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #C8A882;
}

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

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C8A882, #B8986E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
}

.pillar-title {
    color: #4A4A4A;
    font-weight: 700;
    margin-bottom: 15px;
}

.pillar-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #C8A882;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #C8A882;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #C8A882;
}

.timeline-title {
    color: #4A4A4A;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Diferenciais */
.diferencial-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.diferencial-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C8A882, #B8986E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
}

.diferencial-card h5 {
    color: #4A4A4A;
    font-weight: 700;
    margin-bottom: 15px;
}

.diferencial-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICE PAGES STYLES ===== */

.service-image-container {
    position: relative;
}

.service-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

.service-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #C8A882;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C8A882, #B8986E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
}

.service-item h5 {
    color: #4A4A4A;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Area Cards (for related areas) */
.area-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #C8A882;
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C8A882, #B8986E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
}

.area-card h4 {
    color: #4A4A4A;
    font-weight: 700;
    margin-bottom: 15px;
}

.area-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Dark Accordion for FAQ */
.accordion-dark .accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-dark .accordion-button {
    background: transparent;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 20px 25px;
}

.accordion-dark .accordion-button:not(.collapsed) {
    background: rgba(200, 168, 130, 0.2);
    color: #C8A882;
}

.accordion-dark .accordion-button::after {
    filter: invert(1);
}

.accordion-dark .accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    padding: 20px 25px;
    line-height: 1.6;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 768px) {
    .professional-actions {
        flex-direction: column;
    }
    
    .professional-actions .btn {
        width: 100%;
    }
    
    .about-stats-overlay {
        position: static;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .service-stats {
        position: static;
        margin-top: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -30px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section-internal {
        min-height: 40vh;
    }
    
    .hero-section-internal h1 {
        font-size: 2rem;
    }
    
    .professional-card-detailed {
        margin-bottom: 30px;
    }
    
    .pillar-card,
    .service-item,
    .area-card {
        margin-bottom: 20px;
    }
    
    .diferencial-card {
        margin-bottom: 20px;
    }
}

/* ===== ANIMATIONS ===== */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #C8A882;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/banner.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.1), rgba(74, 74, 74, 0.3));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    font-size: 2rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
#sobre {
    padding: 50px 0;
}

.about-image-container {
    position: relative;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

/* ===== AREAS DE ATUACAO ===== */
#areas {
    padding: 100px 0;
}

.area-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: #DEAB52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.area-card:hover .area-icon {
    transform: scale(1.1);
}

.area-icon i {
    font-size: 2rem;
    color: var(--white);
}

.area-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.area-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===== PROFISSIONAIS ===== */
#profissionais {
    padding: 100px 0;
}

.professional-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #3e3e3e;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* ===== TESTIMONIALS ===== */
#depoimentos {
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* ===== NEWS SECTION ===== */
#noticias {
    padding: 100px 0;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-content {
    padding: 25px;
}

.news-content h5 {
    font-weight: 600;
    margin: 10px 0;
    color: var(--text-dark);
}

/* ===== CONTACT SECTION ===== */
#contato {
    padding: 100px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-details h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(200, 168, 130, 0.25);
    color: var(--white);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary-color) !important;
    padding: 40px 0;
}

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

@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);
    }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.btn-back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        position: static;
        margin-top: 30px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .area-card {
        margin-bottom: 30px;
    }
    
    .professional-card {
        margin-bottom: 30px;
    }
    
    .news-card {
        margin-bottom: 30px;
    }
    
    .contact-item {
        margin-bottom: 30px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .area-card,
    .professional-card,
    .news-card {
        padding: 25px 20px;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 12px;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===== UTILITY CLASSES ===== */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-lg-custom {
    box-shadow: var(--shadow-lg);
}

.transition-all {
    transition: var(--transition);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.loading-delay-1 {
    animation-delay: 0.1s;
}

.loading-delay-2 {
    animation-delay: 0.2s;
}

.loading-delay-3 {
    animation-delay: 0.3s;
}

