:root {
    --primary-blue: #002281;
    --secondary-yellow: #FFD700;
    --light-blue: #f5f5f5;
    --dark-blue: #002281;
}

* {
    font-family: 'Poppins', sans-serif;
}

.bg-primary-custom {
    background-color: var(--primary-blue);
}

.bg-secondary-custom {
    background-color: var(--secondary-yellow);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.text-primary-custom {
    color: var(--primary-blue);
}

.text-secondary-custom {
    color: var(--secondary-yellow);
}

/* Ícones dos cards de estatísticas e serviços */
.icon-box i.text-primary-custom {
    color: #580000 !important;
}

.bg-primary-custom.icon-box {
    background-color: #580000 !important;
}

/* Ícones dos cards de serviços em servicos.php */
.card .bg-primary-custom {
    background-color: #580000 !important;
}

/* Títulos dos cards em cinza mediano */
.card h3.text-primary-custom,
.card h5.text-primary-custom {
    color: #666666 !important;
}

.btn-primary-custom {
    background-color: #000000;
    border-color: #000000;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background-color: #333333;
    border-color: #333333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Botão Ver Mais dos cards */
.card .btn-primary-custom {
    background-color: #580000;
    border-color: #580000;
}

.card .btn-primary-custom:hover {
    background-color: #6e0000;
    border-color: #6e0000;
}

.btn-secondary-custom {
    background-color: #FFD700;
    border: 2px solid #FFD700;
    color: #002281;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.btn-secondary-custom:hover {
    background-color: #FFF200;
    border: 2px solid #FFF200;
    color: #002281;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.card {
    transition: all 0.3s ease;
}

/* Card hover - comentado para não interferir com property-cards
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}
*/

.hero-carousel {
    height: 600px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.hero-carousel .carousel-item {
    height: 600px;
}

.hero-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
}

.hero-carousel .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.property-badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.icon-box {
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: scale(1.1);
}

/* Footer social icons */
footer .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer .icon-box:hover {
    background-color: white !important;
    color: #580000 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

/* Footer links */
footer a {
    color: white !important;
}

footer a:hover {
    color: #cccccc !important;
}

/* Footer titles */
footer h6 {
    color: white !important;
}

/* Logo do rodapé em branco */
footer img {
    filter: brightness(0) invert(1);
}

/* Footer mobile styles */
@media (max-width: 768px) {

    footer .col-lg-4,
    footer .col-lg-2,
    footer .col-lg-3,
    footer .col-md-4 {
        text-align: center !important;
    }

    footer .d-flex {
        justify-content: center !important;
    }

    footer ul {
        text-align: center !important;
    }
}

/* Menu Institucional */
.top-bar {
    background: linear-gradient(135deg, #002281 0%, #002281 50%, transparent 50%, transparent 100%);
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ffffff;
    z-index: 1000;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.top-bar a:hover {
    color: #f0f0f0;
    transform: translateX(2px);
}

/* Ícones de redes sociais do top-bar - Removidos (agora no menu principal) */
/*
.top-bar .d-flex.gap-3 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #002281;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.top-bar .d-flex.gap-3 a:hover {
    background-color: #ffffff;
    color: #002281;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
*/

/* CRECI no top-bar */
.top-bar .text-white {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #002281 !important;
}

.top-bar .fa-certificate {
    color: #FFD700;
}

/* Localização no top-bar */
.top-bar .location-text {
    color: #002281;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.top-bar .location-text .fa-map-marker-alt {
    color: #002281;
}

/* Menu Principal */
.main-navbar {
    background-color: #002281 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 34, 129, 0.3);
    z-index: 1000;
}

.main-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 34, 129, 0.5);
}

.main-navbar .navbar-brand h4,
.main-navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.main-navbar .navbar-brand small {
    color: rgba(255, 255, 255, 0.8) !important;
}

.main-navbar .nav-link:hover {
    color: #FFD700 !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.main-navbar .nav-link.active {
    color: #FFD700 !important;
    font-weight: 600;
}

.main-navbar .navbar-brand .bg-primary-custom {
    background-color: white !important;
}

.main-navbar .navbar-brand .bg-primary-custom i {
    color: #333333 !important;
}

.main-navbar .text-white {
    color: #FFD700 !important;
}

/* Ícones das redes sociais no menu principal */
.main-navbar .text-secondary-custom {
    color: #FFD700 !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.main-navbar .text-secondary-custom:hover {
    color: #FFF200 !important;
    transform: translateY(-2px);
}

/* CRECI Bar - Não mais necessário (CRECI agora no top-bar) */
/* 
.creci-bar {
    background: linear-gradient(-135deg, #002281 0%, #002281 22%, transparent 22%, transparent 100%);
    padding: 12px 0;
    position: absolute;
    top: 70px;
    width: 100%;
    z-index: 999;
}

.creci-bar .container {
    position: relative;
    z-index: 1;
}

.creci-badge {
    color: #ffffff;
    padding: 0;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.creci-badge:hover {
    transform: translateY(-2px);
}
*/

/* Offcanvas Menu - Apenas Mobile */
.offcanvas {
    background: linear-gradient(180deg, #001a66 0%, #002281 50%, #0033a0 100%);
    width: 320px !important;
}

.offcanvas-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a66 100%);
    border-bottom: 3px solid var(--secondary-yellow);
    padding: 25px 20px;
}

.offcanvas-logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offcanvas-creci {
    font-size: 0.75rem;
    color: var(--secondary-yellow);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.offcanvas-creci i {
    font-size: 0.7rem;
    margin-right: 4px;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    overflow-y: auto;
}

/* Contact Section */
.offcanvas-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.offcanvas-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.offcanvas-contact-item:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--secondary-yellow);
    border-left-color: var(--secondary-yellow);
    transform: translateX(5px);
}

.offcanvas-contact-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: var(--secondary-yellow);
}

/* Navigation Section */
.offcanvas-nav-section {
    margin-bottom: 25px;
}

.offcanvas-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    padding-left: 5px;
}

.offcanvas .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offcanvas .nav-item {
    width: 100%;
}

.offcanvas .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid transparent;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.offcanvas .nav-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    color: rgba(255, 215, 0, 0.8);
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    background: rgba(255, 215, 0, 0.12);
    border-left-color: var(--secondary-yellow);
    transform: translateX(5px);
}

.offcanvas .nav-link:hover i {
    color: var(--secondary-yellow);
    transform: scale(1.15);
}

.offcanvas .nav-link.active {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-left-color: var(--secondary-yellow);
    color: var(--secondary-yellow) !important;
    font-weight: 600;
}

.offcanvas .nav-link.active i {
    color: var(--secondary-yellow);
}

/* CTA Button */
.btn-offcanvas-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    border: none;
    white-space: nowrap;
}

.btn-offcanvas-cta i {
    font-size: 1.2rem;
}

/* Social Media Section */
.offcanvas-social {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.offcanvas-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.offcanvas-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offcanvas-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.offcanvas-social-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
}

.offcanvas-social-btn.facebook:hover {
    background: #4267B2;
    border-color: #4267B2;
    color: #ffffff;
}

.offcanvas-social-btn.instagram:hover {
    background: linear-gradient(135deg, #E4405F, #C13584);
    border-color: #E4405F;
    color: #ffffff;
}

.offcanvas .btn-close {
    filter: brightness(0) saturate(100%) invert(79%) sepia(72%) saturate(449%) hue-rotate(5deg) brightness(104%) contrast(104%);
    opacity: 0.9;
    width: 30px;
    height: 30px;
    background-size: 18px;
}

.offcanvas .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modal WhatsApp */
.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    animation: slideUp 0.3s ease;
}

.whatsapp-modal.show {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-modal-header {
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-modal-body {
    padding: 20px;
}

.whatsapp-message {
    background: #E8F5E9;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #E8F5E9;
}

.whatsapp-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Banner Hero */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    z-index: 1;
}

.hero-banner .carousel {
    height: 100%;
}

.hero-banner .carousel-inner {
    height: 100%;
}

.hero-banner .carousel-item {
    height: 100%;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

/* Controles do carousel */
.hero-banner .carousel-control-prev,
.hero-banner .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-banner .carousel-control-prev:hover,
.hero-banner .carousel-control-next:hover {
    opacity: 1;
}

/* Indicadores do carousel */
.hero-banner .carousel-indicators {
    bottom: 20px;
}

.hero-banner .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.6;
}

.hero-banner .carousel-indicators button.active {
    opacity: 1;
    background-color: #FFD700;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

/* Filtro sobre o banner - Design Premium */
.search-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1200px;
    z-index: 3;
    padding: 0 20px;
}

.search-container {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header do formulário */
.search-header {
    text-align: center;
    margin-bottom: 25px;
}

.search-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #002281 0%, #0033a0 100%);
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 34, 129, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.search-main-icon {
    color: #FFD700;
    font-size: 1.8rem;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-3px);
    }
}

.search-title {
    color: #002281;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #002281 0%, #0033a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

/* Campos do formulário */
.search-form-wrapper {
    margin-bottom: 20px;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: #002281;
    font-size: 0.95rem;
}

.field-icon {
    margin-right: 8px;
    color: #FFD700;
    font-size: 1.1rem;
}

.search-select,
.search-input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 34, 129, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    height: 48px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.search-select:focus,
.search-input:focus {
    outline: none;
    border-color: #002281;
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 0 4px rgba(0, 34, 129, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-select:hover,
.search-input:hover {
    border-color: rgba(0, 34, 129, 0.3);
    transform: translateY(-1px);
}

/* Botões */
.search-button-field {
    align-self: end;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    height: 48px;
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn-primary {
    background: linear-gradient(135deg, #002281 0%, #0033a0 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 34, 129, 0.3);
}

.search-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 34, 129, 0.4);
    background: linear-gradient(135deg, #0033a0 0%, #004fc7 100%);
}

.search-btn-full {
    width: 100%;
}

/* Estatísticas */
.search-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 34, 129, 0.1);
}

.search-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #002281;
    font-weight: 600;
    font-size: 0.9rem;
}

.search-stat-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .search-container {
        padding: 15px;
    }

    .search-title {
        font-size: 1.75rem;
    }

    .search-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-stats {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .search-form-wrapper {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .search-overlay {
        padding: 0 10px;
    }

    .search-container {
        padding: 12px;
    }

    .search-title {
        font-size: 1.5rem;
    }

    .search-header {
        margin-bottom: 20px;
    }

    .search-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .search-form-wrapper {
        margin-bottom: 10px;
    }

    .search-stats {
        margin-top: 10px;
        padding-top: 15px;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--secondary-yellow);
    z-index: 99999;
    transition: width 0.1s ease;
}

/* Property Cards - Design Premium */
.property-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 34, 129, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 34, 129, 0.15);
}

.property-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.property-image-wrapper .carousel,
.property-image-wrapper .carousel-inner,
.property-image-wrapper .carousel-item {
    height: 100%;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
    display: block;
}

.property-card:hover .property-image {
    transform: scale(1.05);
}

/* Controles do carousel */
.property-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 34, 129, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.property-carousel-btn.carousel-control-prev {
    left: 10px;
}

.property-carousel-btn.carousel-control-next {
    right: 10px;
}

.property-card:hover .property-carousel-btn {
    opacity: 1;
}

.property-carousel-btn:hover {
    background: rgba(0, 34, 129, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Badge Financiável */
.property-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.property-badge i {
    font-size: 0.7rem;
}

/* Tipo do imóvel */
.property-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #002281 0%, #0033a0 100%);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 34, 129, 0.3);
}

/* Conteúdo do card */
.property-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-header {
    margin-bottom: 20px;
}

.property-title {
    color: #002281;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-location {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    gap: 8px;
}

.property-location i {
    color: #FFD700;
    font-size: 0.85rem;
}

/* Features */
.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #f1f3f4;
    border-bottom: 1px solid #f1f3f4;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
}

.property-feature i {
    color: #002281;
    width: 16px;
    text-align: center;
}

/* Footer do card */
.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.property-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.price-value {
    color: #002281;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

/* Botão */
.property-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #002281;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.property-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.property-btn:hover::before {
    left: 100%;
}

.property-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    color: #002281;
    text-decoration: none;
}

.property-btn i {
    transition: transform 0.3s ease;
}

.property-btn:hover i {
    transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .property-content {
        padding: 20px;
    }

    .property-features {
        gap: 12px;
        margin-bottom: 20px;
    }

    .property-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .property-btn {
        justify-content: center;
        width: 100%;
    }
}

/* Botão Ver Mais da Seção */
.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #002281 0%, #0033a0 100%);
    color: #FFD700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 34, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-see-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.btn-see-more:hover::before {
    left: 100%;
}

.btn-see-more:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 34, 129, 0.4);
    color: #FFD700;
    text-decoration: none;
    background: linear-gradient(135deg, #0033a0 0%, #004fc7 100%);
}

.btn-see-more i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.btn-see-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .btn-see-more {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Category Cards - Categorias de Imóveis */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 34, 129, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.category-card::before {
    /* Sublinhado removido */
    display: none;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 34, 129, 0.15);
    text-decoration: none;
}

.category-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #002281 0%, #0033a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 34, 129, 0.2);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #0033a0 0%, #004fc7 100%);
    box-shadow: 0 12px 40px rgba(0, 34, 129, 0.35);
}

.category-icon i {
    font-size: 2.8rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.15);
}

.category-title {
    color: #002281;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-title {
    color: #0033a0;
}

/* ========================================
   FOOTER NOVO - DESIGN MODERNO
   ======================================== */

.footer-new {
    background: linear-gradient(180deg, #001a66 0%, var(--primary-blue) 100%);
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-yellow), var(--primary-blue));
}

/* Logo e Descrição */
.footer-logo-section img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo-section img:hover {
    transform: scale(1.05);
}

.footer-logo-section h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Links Sections */
.footer-links h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--secondary-yellow);
    padding-left: 5px;
}

/* Contact List */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-contact-list li i {
    color: var(--secondary-yellow);
    margin-top: 2px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Hours List */
.footer-hours-list li {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours-list li:last-child {
    border-bottom: none;
}

.footer-hours-list .day {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.footer-hours-list .hour {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-yellow);
    font-weight: 600;
}

/* CRECI Badge */
.footer-creci {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--secondary-yellow);
}

.footer-creci i {
    color: var(--secondary-yellow);
    font-size: 1rem;
}

.footer-creci span {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom strong {
    color: var(--secondary-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-new {
        padding: 40px 0 0;
        text-align: center;
    }

    .footer-logo-section,
    .footer-links {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo-section img {
        margin: 0 auto;
        display: block;
    }

    .footer-logo-section h5,
    .footer-text {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h6,
    .footer-links ul {
        text-align: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-creci {
        display: flex;
        margin: 0 auto;
    }

    .footer-bottom {
        margin-top: 30px;
        text-align: center !important;
    }

    .footer-bottom .col-12 {
        text-align: center !important;
    }
}

/* ========================================
   PREMIUM FILTER STYLES - IMOVEIS.PHP
   ======================================== */

.premium-filter {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 34, 129, 0.05) 0%,
            rgba(255, 215, 0, 0.03) 50%,
            rgba(0, 34, 129, 0.08) 100%);
    pointer-events: none;
}

.filter-container {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.filter-header {
    text-align: center;
    margin-bottom: 30px;
}

.filter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #001a66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(0, 34, 129, 0.3);
}

.filter-icon i {
    color: white;
    font-size: 1.5rem;
}

.filter-title {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-field {
    position: relative;
}

.field-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.field-icon {
    color: var(--secondary-yellow);
    margin-right: 8px;
    font-size: 1.1rem;
}

.field-header label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 34, 129, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--secondary-yellow);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.filter-button-field {
    display: flex;
    align-items: end;
}

.filter-search-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-blue), #001a66);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 34, 129, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.filter-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 34, 129, 0.4);
    background: linear-gradient(135deg, #001a66, var(--primary-blue));
}

.filter-search-btn i {
    font-size: 1.1rem;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #001a66);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(0, 34, 129, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mobile-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-filter-btn:hover::before {
    left: 100%;
}

.mobile-filter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 34, 129, 0.4);
}

/* Mobile Filter Button Float - Above WhatsApp */
.mobile-filter-btn-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #001a66);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(0, 34, 129, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 999;
    overflow: hidden;
}

.mobile-filter-btn-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-filter-btn-float:hover::before {
    left: 100%;
}

.mobile-filter-btn-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 34, 129, 0.4);
}

/* Mobile Modal */
.mobile-modal {
    border: none;
    border-radius: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a66 100%);
    color: white;
}

.mobile-modal-header {
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.mobile-modal-header .modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-modal-body {
    padding: 30px 20px;
}

.mobile-filter-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-filter-field {
    position: relative;
}

.mobile-field-label {
    display: flex;
    align-items: center;
    color: var(--secondary-yellow);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-filter-select,
.mobile-filter-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-filter-select::placeholder,
.mobile-filter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-filter-select:focus,
.mobile-filter-input:focus {
    outline: none;
    border-color: var(--secondary-yellow);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.mobile-filter-select option {
    background: var(--primary-blue);
    color: white;
}

.mobile-modal-footer {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    gap: 15px;
}

.mobile-clear-btn {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-clear-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.mobile-search-btn {
    flex: 2;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--secondary-yellow), #e6c200);
    border: none;
    border-radius: 12px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.mobile-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #e6c200, var(--secondary-yellow));
}

/* Filter Responsive */
@media (max-width: 768px) {
    .filter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .filter-container {
        padding: 20px;
    }

    .filter-title {
        font-size: 1.4rem;
    }

    .filter-subtitle {
        font-size: 0.9rem;
    }
}

.modern-footer .container {
    padding-left: 20px;
    padding-right: 20px;
}

.company-name {
    font-size: 1.2rem;
    text-align: center;
}

.company-description {
    text-align: center;
    font-size: 0.9rem;
}

.social-links {
    justify-content: center;
    margin-bottom: 30px;
}

.social-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    font-size: 1rem;
}

.footer-menu {
    text-align: center;
}

.contact-info {
    text-align: center;
}

.hour-item {
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.footer-bottom .row>div {
    text-align: center !important;
    margin-bottom: 15px;
}

.creci-info {
    justify-content: center;
}


@media (max-width: 480px) {
    .footer-content .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .social-links {
        gap: 10px;
    }

    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .hour-item {
        padding: 5px 10px;
        margin-bottom: 8px;
    }

    .copyright-text,
    .creci-info {
        font-size: 0.8rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .category-card {
        padding: 30px 15px;
        min-height: 180px;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .category-icon i {
        font-size: 2.2rem;
    }

    .category-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 25px 10px;
        min-height: 160px;
    }

    .category-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .category-icon i {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1rem;
    }
}

/* ================================================
   ABOUT PAGE STYLES - P\u00c1GINA SOBRE
   ================================================ */

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 34, 129, 0.95), rgba(0, 34, 129, 0.85)),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&h=1080&fit=crop') center/cover;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 34, 129, 0.9), rgba(0, 34, 129, 0.7));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--secondary-yellow);
    color: var(--secondary-yellow);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.about-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
}

.about-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

.about-stat-item p {
    color: white;
    font-size: 1rem;
    margin: 0;
}

/* Company Story Section */
.company-story-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover img {
    transform: scale(1.05);
}

.story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.story-badge i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.story-badge span {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.section-label {
    display: inline-block;
    background: rgba(0, 34, 129, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.story-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.story-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.story-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.story-feature-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.story-feature-item span {
    font-weight: 600;
    color: #333;
}

/* MVV Section */
.mvv-section {
    padding: 6rem 0;
    background: white;
}

.mvv-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.mission-card .mvv-icon {
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
}

.vision-card .mvv-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.values-card .mvv-icon {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.mvv-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.mvv-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-yellow));
}

/* Differentials Section */
.differentials-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.differential-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.differential-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(0, 34, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.differential-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.differential-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue), #001a66);
    position: relative;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-yellow);
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: white;
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, white);
}

.cta-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 35px rgba(0, 34, 129, 0.3);
}

.cta-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.cta-btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 34, 129, 0.3);
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 34, 129, 0.4);
    color: white;
}

.cta-btn-tertiary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn-tertiary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-stats-row {
        gap: 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .story-image-wrapper img {
        height: 350px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        justify-content: center;
    }
}

/* ========================================
   SERVICES PAGE - PÁGINA DE SERVIÇOS
   ======================================== */

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a66 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,215,0,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--secondary-yellow);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    color: var(--secondary-yellow);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Main Services */
.main-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 34, 129, 0.15);
    border-color: var(--secondary-yellow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #001a66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0, 34, 129, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: var(--secondary-yellow);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card:hover .service-icon i {
    color: var(--primary-blue);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.9rem;
}

.service-list li i {
    color: var(--secondary-yellow);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.additional-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.additional-card:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.additional-card:hover h4,
.additional-card:hover p {
    color: #ffffff;
}

.additional-card:hover .additional-icon {
    background: var(--secondary-yellow);
    color: var(--primary-blue);
}

.additional-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.additional-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.additional-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.additional-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    transition: all 0.3s ease;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), #001a66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 34, 129, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    transform: scale(1.08);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a66 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.services-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.services-cta .cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-cta .cta-btn i {
    font-size: 1.3rem;
}

.cta-btn-primary {
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    border: 2px solid var(--secondary-yellow);
}

.cta-btn-primary:hover {
    background: transparent;
    color: var(--secondary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.cta-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn-outline:hover {
    background: #ffffff;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .main-services {
        padding: 50px 0;
    }

    .service-card {
        margin-bottom: 20px;
    }

    /* Desabilitar efeitos hover problemáticos no mobile */
    .service-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border-color: transparent;
    }

    .service-card:hover .service-icon {
        transform: none;
        background: linear-gradient(135deg, var(--primary-blue), #001a66);
    }

    .service-card:hover .service-icon i {
        color: #ffffff;
    }

    .additional-card:hover {
        background: #f8f9fa;
        transform: none;
    }

    .additional-card:hover h4,
    .additional-card:hover p {
        color: inherit;
    }

    .additional-card:hover .additional-icon {
        background: var(--primary-blue);
        color: #ffffff;
    }

    .process-step:hover .step-number {
        background: linear-gradient(135deg, var(--primary-blue), #001a66);
        color: #ffffff;
        transform: none;
    }

    .services-cta .cta-title {
        font-size: 1.8rem;
    }

    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .services-cta .cta-btn {
        justify-content: center;
    }

    .cta-btn-primary:hover,
    .cta-btn-outline:hover {
        transform: none;
    }
}

/* ========================================
   CONTACT PAGE - PÁGINA DE CONTATO
   ======================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a66 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,215,0,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

/* Contact Cards Section */
.contact-cards {
    padding: 80px 0 60px;
    background: #f8f9fa;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 34, 129, 0.15);
    border-color: var(--secondary-yellow);
}

.contact-card-featured {
    border: 3px solid var(--secondary-yellow);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-badge i {
    font-size: 0.75rem;
}

.contact-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), #001a66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 34, 129, 0.3);
}

.contact-card:hover .contact-card-icon {
    background: var(--secondary-yellow);
    transform: scale(1.05);
}

.contact-card-icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

.contact-card:hover .contact-card-icon i {
    color: var(--primary-blue);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.contact-card-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card-link {
    color: var(--primary-blue);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card-link:hover {
    color: var(--secondary-yellow);
}

.contact-card-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.contact-card-button:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 34, 129, 0.4);
}

/* Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.info-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--secondary-yellow);
    box-shadow: 0 10px 30px rgba(0, 34, 129, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary-yellow);
}

.info-header i {
    font-size: 2rem;
    color: var(--secondary-yellow);
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: var(--primary-blue);
}

.schedule-item:hover .schedule-day,
.schedule-item:hover .schedule-day i,
.schedule-item:hover .schedule-time {
    color: #ffffff;
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

.schedule-day i {
    color: var(--secondary-yellow);
}

.schedule-time {
    font-weight: 700;
    color: var(--secondary-yellow);
}

.location-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: var(--primary-blue);
}

.location-item:hover i,
.location-item:hover strong,
.location-item:hover p {
    color: #ffffff;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--secondary-yellow);
    flex-shrink: 0;
}

.location-item div {
    flex: 1;
}

.location-item strong {
    display: block;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.location-item p {
    margin: 0;
    color: #666;
}

/* Social Media Section */
.contact-social {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,34,129,0.05)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.social-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.social-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-yellow);
    margin: 15px auto 0;
    border-radius: 2px;
}

.social-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 3px solid;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-btn i {
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.social-btn span {
    position: relative;
    z-index: 1;
}

.social-btn-facebook {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
    color: #ffffff;
    border-color: #4267B2;
}

.social-btn-facebook:hover {
    background: #ffffff;
    color: #4267B2;
    border-color: #4267B2;
    border-width: 3px;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(66, 103, 178, 0.4);
}

.social-btn-instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    color: #ffffff;
    border-color: #E4405F;
}

.social-btn-instagram:hover {
    background: #ffffff;
    color: #E4405F;
    border-color: #E4405F;
    border-width: 3px;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.social-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-color: #25D366;
}

.social-btn-whatsapp:hover {
    background: #ffffff;
    color: #25D366;
    border-color: #25D366;
    border-width: 3px;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a66 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-cta .cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.contact-cta .cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-cards {
        padding: 50px 0 40px;
    }

    .contact-card {
        margin-bottom: 20px;
    }

    .contact-card:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .contact-card:hover .contact-card-icon {
        transform: none;
    }

    .social-title {
        font-size: 2rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .social-btn {
        justify-content: center;
        width: 100%;
    }

    .social-btn:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .social-btn:hover::before {
        width: 0;
        height: 0;
    }

    .contact-cta .cta-title {
        font-size: 1.8rem;
    }
}