body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    padding-top: 80px;
}
/* Contenedor general de la sección */
.problems-section {
    background: #0b1020; /* o el color que estés usando en tu theme */
    color: #f5f5f5;
}

/* Tarjeta del problema */
.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Hover bonito y consistente */
.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(64, 224, 208, 0.7);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

/* Icono: círculo y tamaño fijo del SVG */
.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #40e0d0, #1e90ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

/* Títulos y textos */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.section-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.problem-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.problem-description {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0;
}

/* Pequeño ajuste en pantallas chicas */
@media (max-width: 767.98px) {
    .problem-card {
        padding: 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}


/* ===== HEADER STICKY ===== */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #ffffff !important;
}

.header-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 120px !important;
    max-height: 50px !important;
    object-fit: contain;
}

@media (max-width: 991px) {
    .header-logo {
        height: 45px !important;
        max-width: 100px !important;
        max-height: 45px !important;
    }
}

@media (max-width: 767px) {
    .header-logo {
        height: 40px !important;
        max-width: 90px !important;
        max-height: 40px !important;
    }
}

.brand-text {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #17a2b8;
}

.btn-solicitar {
    background: linear-gradient(135deg, #17a2b8, #138496);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-solicitar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.navbar-toggler-large {
    padding: 0.5rem 0.75rem;
    font-size: 1.5rem;
}

/* ===== HERO PRINCIPAL ===== */
.hero-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(23, 162, 184, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(102, 16, 242, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-text {
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e0e0e0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #17a2b8, #138496);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(23, 162, 184, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background-color: #ffffff;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.hero-visual {
    z-index: 2;
    position: relative;
}

.mockup-container {
    animation: fadeInRight 1s ease 0.3s both;
}

.mockup-img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
    max-width: 450px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

@media (max-width: 991px) {
    .mockup-img {
        max-width: 350px !important;
    }
}

@media (max-width: 767px) {
    .mockup-img {
        max-width: 280px !important;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        margin: 0 !important;
    }
    
    .mockup-container {
        text-align: center;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-solicitar {
        width: 100%;
        margin-top: 1rem;
    }
}

.project-card {
    transition: all 0.3s ease-in-out;
    border: none;
}
.project-card:hover {
    transform: translateY(-10px);
    background-color: #0d6efd;
    color: #fff;
}

.whatsapp-section {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.workflow .step h3 {
    font-size: 2rem;
    color: #0d6efd;
}
.workflow .step {
    transition: transform 0.3s ease;
}
.workflow .step:hover {
    transform: scale(1.05);
}

.stats {
    background: linear-gradient(135deg, #0d6efd, #dc3545);
}
.stats h2 {
    font-size: 3rem;
    font-weight: bold;
}

.bienvenidos-gallery img {
    object-fit: cover;
    width: 100%;
    height: 180px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.bienvenidos-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .bienvenidos-gallery img {
        height: 150px;
    }
}

/* ===== SECCIÓN DE PLANES / SERVICIOS ===== */

.pricing-section {
    background-color: #f8f9fa;
}

.pricing-section h2 {
    color: #0d6efd;
}

/* Tarjeta de plan */
.plan-card {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #dee2e6;          /* borde para delimitar cada plan */
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
    padding: 1.75rem 1.5rem;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;                       /* para alargar y alinear */
    flex-direction: column;
    height: 100%;
    min-height: 360px;                  /* “más alargados” */
}

/* zona de texto / lista */
.plan-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* cabecera */
.plan-card .plan-header {
    margin-bottom: 1.2rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.plan-tagline {
    font-size: .9rem;
    color: #6c757d;
    margin-bottom: .75rem;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: .75rem;
}

.plan-price .currency {
    font-size: .9rem;
    margin-right: .15rem;
}

.plan-price .period {
    font-size: .85rem;
    font-weight: 400;
    margin-left: .25rem;
    color: #6c757d;
}

/* Lista de características */
.plan-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    font-size: .9rem;
    color: #495057;
}

.plan-features li {
    margin-bottom: .4rem;
}

/* Botón: oculto por defecto, aparece al seleccionar la tarjeta */
.btn-start {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: all 0.25s ease;
}

/* Hover / focus en la tarjeta */
.plan-card:hover,
.plan-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    border-color: #0d6efd;
}

.plan-card:hover .btn-start,
.plan-card:focus-within .btn-start {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Plan destacado (Pro) */
.plan-card.featured {
    border-top: 4px solid #0d6efd;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
}

.plan-card.featured .badge-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0d6efd;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .8rem;
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
}

.plan-card.featured .plan-tagline,
.plan-card.featured .plan-price .period {
    color: #e9ecef;
}

.plan-card.featured .plan-price {
    color: #fff;
}

.plan-card.featured .plan-features {
    color: #f8f9fa;
}

/* ===== SECCIÓN DE CONTACTO ===== */
.contact-section-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    position: relative;
}

.contact-box {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* Lado del formulario */
.contact-form-side {
    background-color: #ffffff;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-side h2 {
    color: #0d6efd;
    font-weight: 700;
    font-size: 2rem;
}

.contact-form-side .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.contact-form-side .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.contact-form-side .btn-primary {
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form-side .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Lado de la imagen */
.contact-image-side {
    position: relative;
    height: 100%;
    min-height: 200px;
    max-height: 400px;
    overflow: hidden;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(102, 16, 242, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-info-text {
    text-align: center;
}

.contact-info-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.3;
}

.contact-details {
    margin-top: 10px;
    text-align: left;
}

.contact-details p {
    font-size: 0.75rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    line-height: 1.4;
}

/* Responsivo */
@media (max-width: 991px) {
    .contact-image-side {
        min-height: 180px;
        max-height: 250px;
    }
    
    .contact-info-text h3 {
        font-size: 1rem;
    }
    
    .contact-form-side {
        padding: 30px !important;
        min-height: 350px;
    }
    
    .contact-overlay {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .contact-section-wrapper {
        padding: 40px 0;
    }
    
    .contact-box {
        margin: 0 15px;
    }
    
    .contact-image-side {
        min-height: 150px;
        max-height: 200px;
    }
    
    .contact-form-side {
        min-height: 300px;
    }
    
    .contact-form-side h2 {
        font-size: 1.6rem;
    }
    
    .contact-info-text h3 {
        font-size: 0.95rem;
    }
    
    .contact-info-text p {
        font-size: 0.8rem;
    }
    
    .contact-details p {
        font-size: 0.7rem;
    }
    
    .contact-overlay {
        padding: 15px;
    }
}

/* ===== SECCIÓN PROBLEMAS QUE RESOLVEMOS ===== */

.problems-section {
    background-color: #ffffff;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.problem-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #17a2b8, #0d6efd);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: #17a2b8;
    box-shadow: 0 15px 30px rgba(23, 162, 184, 0.15);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    width: 55px !important;
    height: 55px !important;
    min-width: 55px;
    min-height: 55px;
    max-width: 55px;
    max-height: 55px;
    background: linear-gradient(135deg, #17a2b8, #0d6efd);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.problem-icon svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
    color: #ffffff;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.problem-card:hover .problem-icon {
    transform: rotate(3deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.25);
}

.problem-card:hover .problem-icon svg {
    transform: scale(1.15);
}

.problem-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.problem-card:hover .problem-title {
    color: #17a2b8;
}

.problem-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive para tablets */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .problem-card {
        padding: 2rem 1.5rem;
    }
    
    .problem-title {
        font-size: 1.2rem;
    }
    
    .problem-description {
        font-size: 0.95rem;
    }
}

/* Responsive para móviles */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .problem-card {
        padding: 1.75rem 1.25rem;
    }
    
    .problem-icon {
        width: 60px;
        height: 60px;
    }
    
    .problem-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .problem-title {
        font-size: 1.15rem;
    }
    
    .problem-description {
        font-size: 0.9rem;
    }
}

/* ===== SECCIÓN CÓMO TRABAJAMOS (TIMELINE) ===== */

.workflow-section {
    background: #1a1d2e;
    position: relative;
    overflow: hidden;
    padding: 80px 0 !important;
}

.workflow-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.timeline-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #3a3d4e;
    z-index: 1;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-step-header {
    margin-bottom: 2rem;
}

.step-label {
    display: block;
    font-size: 1rem;
    color: #8a8d9e;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.3;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 0 4px #1a1d2e;
}

.step-description {
    font-size: 1rem;
    color: #8a8d9e;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

/* Responsive para tablets */
@media (max-width: 991px) {
    .workflow-main-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .timeline-wrapper {
        flex-wrap: wrap;
        gap: 3rem 2rem;
    }
    
    .timeline-wrapper::before {
        display: none;
    }
    
    .timeline-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
}

/* Responsive para móviles */
@media (max-width: 767px) {
    .workflow-section {
        padding: 60px 0 !important;
    }
    
    .workflow-main-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .timeline-item {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .step-label {
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}


/* ===== FOOTER ===== */

.footer-main {
    background: #000000 !important;
    color: #e0e0e0;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-main .container,
.footer-main .row,
.footer-main .col-lg-4,
.footer-main .col-lg-3,
.footer-main .col-lg-5,
.footer-main .col-md-6,
.footer-main .col-md-12 {
    background-color: transparent !important;
}

.footer-brand {
    display: block;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b3c1;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #17a2b8;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #b0b3c1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #17a2b8;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #17a2b8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.footer-location {
    font-size: 0.9rem;
    color: #8a8d9e;
    margin: 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #8a8d9e;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal a {
    color: #b0b3c1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #17a2b8;
}

.footer-legal .separator {
    color: #5a5d6e;
}

.footer-note {
    font-size: 0.85rem;
    color: #6c6f7e;
    margin: 0;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 25px;
        margin-top: 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-brand-name {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}
