/**
 * components.css - Estilos de componentes extraidos de index.html
 * Arrayanmed - Centro de Salud Mental Infantojuvenil
 *
 * Este archivo contiene todos los estilos que estaban incrustados
 * como <style> blocks e inline styles dentro del HTML.
 * Extraidos el 2026-03-03 para mantener separacion HTML/CSS.
 */

/* ========== OVERRIDES DE COLORES Y VARIABLES ========== */
.brand-name, .brand-name h1, h1.brand-name, .logo-text, .brand-text {
    color: #98aa71 !important;
    background: transparent !important;
}

.nav-btn, .nav-btn.green, .btn-primary, .btn-green {
    background: #98aa71 !important;
    background-image: linear-gradient(135deg, #98aa71 0%, #7a8d5a 100%) !important;
    color: white !important;
    border-color: #98aa71 !important;
}

.star { color: #e6c757 !important; }
h1 { color: #98aa71 !important; }

.specialist-photo img { width: 300px; height: auto; }

/* ========== HOVER EFFECTS ========== */
.especialidad-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(152,170,113,0.35) !important;
    filter: brightness(1.05);
}

/* ========== BOTON FLOTANTE DE AGENDAR ========== */
.agendar-float-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), #8fa052);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(152,170,113,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.agendar-float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(152,170,113,0.7);
}

.agendar-float-btn .agendar-tooltip {
    position: absolute;
    right: 80px;
    background: var(--primary-green);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.agendar-float-btn:hover .agendar-tooltip {
    opacity: 1;
}

/* ========== TESTIMONIOS ========== */
.testimonio-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonio-profesional h4 {
    color: var(--primary-green);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.testimonio-profesional .especialidad {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.testimonio-rating {
    text-align: right;
}

.estrellas {
    color: #FFD700;
    font-size: 1.2rem;
    display: block;
}

.rating-numero {
    font-weight: bold;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonio-body {
    margin: 20px 0;
    padding: 20px;
    background: rgba(152,170,113,0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-green);
}

.comentario {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.autor-info {
    display: flex;
    flex-direction: column;
}

.autor-nombre {
    font-weight: 600;
    color: var(--text-dark);
}

.fecha {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.verificado {
    color: var(--primary-green);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ver-en-encuadrado {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-medium);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}

.ver-en-encuadrado:hover {
    color: var(--primary-green);
}

.rating-promedio-container {
    display: inline-block;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.rating-numero-grande {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-green);
}

.estrellas-grandes {
    font-size: 2rem;
    color: #FFD700;
    margin: 10px 0;
}

.rating-detalles p {
    margin: 5px 0;
    color: var(--text-medium);
}

.fuente-rating a {
    color: var(--primary-green);
    text-decoration: none;
}

/* ========== BOTON FLOTANTE DE INSTAGRAM ========== */
.instagram-float-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.instagram-float-btn .instagram-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.instagram-float-btn:hover .instagram-tooltip {
    opacity: 1;
}

.instagram-float-btn .instagram-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ========== SPACERS ========== */
.spacer-sm { height: 50px; }
.spacer-md { height: 60px; }
.spacer-lg { height: 80px; }

/* ========== TOP INFO BAR ========== */
.top-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: white;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.top-info-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
}

.top-info-bar .tel-link {
    color: white;
    font-weight: 700;
}

.top-info-bar .btn-disponibilidad {
    background: white;
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== HERO SECTION ========== */
.hero-compact {
    padding: 15px 0;
    min-height: auto;
}

.hero-compact .hero-content {
    padding: 5px 0;
    text-align: center;
}

.hero-compact .logo-wrapper {
    margin-bottom: 15px;
}

.hero-compact .logo-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.hero-compact .logo-image {
    width: 100%;
    height: 100%;
}

.hero-compact .brand-title {
    margin-bottom: 15px;
}

.hero-compact .brand-name {
    font-size: 3rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-green);
    text-shadow: 0 2px 4px rgba(152,170,113,0.3);
    line-height: 1;
}

.brand-star {
    color: var(--accent-gold);
    font-size: 2rem;
    vertical-align: middle;
}

.hero-compact .brand-subtitle {
    font-size: 1.35rem;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
}

.hero-contact-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(152,170,113,0.05));
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border: 2px solid var(--primary-green);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-contact-box p {
    margin: 8px 0;
    color: var(--text-dark);
    text-align: center;
}

.hero-contact-box .address {
    font-size: 1.15rem;
    font-weight: 600;
}

.hero-contact-box .phone-hours {
    font-size: 1.1rem;
}

.hero-contact-box a {
    color: var(--primary-green);
    font-weight: 700;
}

/* ========== ESPECIALIDADES NAV ========== */
.especialidades-nav {
    padding: 10px 0;
    background: rgba(152,170,113,0.05);
    margin-top: 8px;
}

.especialidades-nav h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.especialidades-nav .btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.especialidad-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #98aa71 0%, #7a8d5a 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 3px 12px rgba(152,170,113,0.3);
}

.especialidad-btn i {
    margin-right: 10px;
}

/* ========== PROCESS SECTION (Como Trabajamos) ========== */
.process-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(152,170,113,0.02) 0%, rgba(230,199,87,0.02) 100%);
}

.process-section .container {
    max-width: 1000px;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--text-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-card.border-green { border-top: 4px solid var(--primary-green); }
.process-card.border-gold { border-top: 4px solid var(--accent-gold); }
.process-card.border-blue { border-top: 4px solid #4682b4; }

.process-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.process-step-number.bg-green {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
}

.process-step-number.bg-gold {
    background: linear-gradient(135deg, var(--accent-gold), #e6b84d);
}

.process-step-number.bg-blue {
    background: linear-gradient(135deg, #4682b4, #2f5f8f);
}

.process-card h3 {
    margin: 0 0 15px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.process-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* ========== CTA BOX (reusable) ========== */
.cta-box {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(152,170,113,0.05);
    border-radius: 12px;
}

.cta-box h4 {
    margin: 0 0 15px;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.cta-box p {
    margin: 0 0 25px;
    color: var(--text-medium);
}

/* ========== TESTIMONIOS SECTION ========== */
.testimonios-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(152,170,113,0.05), rgba(230,199,87,0.05));
}

.testimonios-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.testimonios-section .subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

#rating-promedio {
    text-align: center;
    margin-bottom: 50px;
}

#testimonios-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonios-footer {
    text-align: center;
    margin-top: 40px;
}

.testimonios-footer .verified-text {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.testimonios-footer .verified-text i {
    color: var(--primary-green);
}

.btn-google-review {
    display: inline-block;
    margin-top: 15px;
    margin-left: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}

.btn-google-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66,133,244,0.4);
}

.btn-google-review i {
    margin-right: 8px;
}

/* ========== ABOUT SECTION DETAIL ========== */
.about-detail {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-card > h3 {
    color: var(--primary-green);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.mission-box {
    background: rgba(152,170,113,0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.mission-box h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.vision-box {
    background: rgba(255,193,7,0.1);
    padding: 20px;
    border-radius: 15px;
}

.vision-box h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mission-box p,
.vision-box p,
.info-panel p {
    color: var(--text-dark);
    line-height: 1.8;
}

.info-panel {
    background: rgba(52,152,219,0.1);
    padding: 20px;
    border-radius: 15px;
    height: 100%;
}

.info-panel h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-list {
    list-style: none;
    padding: 0;
    color: var(--text-dark);
    line-height: 2;
}

.info-list i {
    width: 20px;
}

.info-list a {
    color: var(--primary-green);
}

/* Icon color utilities */
.icon-green { color: var(--primary-green); }
.icon-gold { color: var(--accent-gold); }
.icon-blue { color: #3498db; }
.icon-instagram { color: #E4405F; }
.icon-whatsapp-green { color: #25D366; }
.icon-red { color: #FF0000; }

.values-section {
    background: linear-gradient(135deg, rgba(152,170,113,0.05), rgba(255,193,7,0.05));
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.values-section > h4 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.value-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.value-item h5 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.team-overview {
    background: white;
    border: 2px solid var(--primary-green);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.team-overview > h4 {
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.team-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.team-member {
    padding: 15px;
    border-radius: 10px;
}

.team-member.bg-green-light { background: rgba(152,170,113,0.1); }
.team-member.bg-gold-light { background: rgba(255,193,7,0.1); }
.team-member.bg-blue-light { background: rgba(52,152,219,0.1); }

.team-member .role-green { color: var(--primary-green); }
.team-member .role-gold { color: var(--accent-gold); }
.team-member .role-blue { color: #3498db; }

.team-member a.instagram-link {
    color: #E4405F;
    font-size: 0.9rem;
}

.action-buttons {
    text-align: center;
}

.action-buttons .btn-green {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-instagram-gradient {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

/* ========== ABOUT SECTION TITLE ========== */
.section-title-lg {
    font-size: 2rem;
}

/* ========== VIDEO SECTION ========== */
.video-section {
    padding: 60px 0;
    background: rgba(152,170,113,0.015);
}

.video-section .container {
    max-width: 900px;
}

.video-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--text-dark);
}

.video-section .subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.video-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-ctas {
    text-align: center;
    margin-top: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn-video-cta {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(152,170,113,0.3);
    font-size: 1rem;
}

.btn-video-cta i,
.btn-youtube i {
    margin-right: 8px;
}

.btn-youtube {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
    font-size: 1rem;
}

.video-promo {
    margin-top: 20px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-promo i {
    color: #FF0000;
    margin-right: 5px;
}

.btn-video-share {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid rgba(152,170,113,0.2);
    font-size: 1rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
}

.faq-section .container {
    max-width: 900px;
}

.faq-section .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.faq-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-important {
    margin-top: 40px;
    padding: 25px;
    background: rgba(152,170,113,0.08);
    border-radius: 12px;
    text-align: center;
}

.faq-important p {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 0;
}

/* ========== FOOTER ========== */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info {
    flex: 1 1 260px;
    min-width: 260px;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-info p {
    margin: 8px 0;
}

.footer-info i {
    width: 18px;
    text-align: center;
}

.footer-map {
    flex: 1 1 260px;
    min-width: 260px;
}

.footer-map iframe {
    border: 0;
    border-radius: 12px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-family: 'Quicksand', sans-serif;
}

.footer-bottom .tagline {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-medium);
}

.footer-bottom .copyright {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-bottom .admin-link {
    margin-top: 15px;
}

.footer-bottom .admin-link a {
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.7;
}

/* ========== TEAM CARD LINKS ========== */
.team-card-location a {
    color: var(--primary-green);
    text-decoration: none;
}

/* ========== ENCUADRADO REVIEW LINK ========== */
.btn.btn-secondary.mt-20 {
    margin-top: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .especialidades-nav .btn-group {
        gap: 15px;
    }
    .especialidad-btn {
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
    }
    .hero-compact {
        padding: 25px 0;
    }
    .hero-compact .logo-container {
        width: 190px;
        height: 190px;
    }
    .hero-compact .brand-name {
        font-size: 2.8rem;
        font-weight: 700;
    }
    .hero-compact .brand-subtitle {
        font-size: 1.1rem;
    }
    .about-grid,
    .values-grid,
    .team-overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-detail {
        max-width: 95%;
    }
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .testimonio-card {
        padding: 20px;
    }
    #testimonios-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .agendar-float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 20px;
        right: 15px;
    }
    .agendar-float-btn .agendar-tooltip {
        display: none;
    }
    .instagram-float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
    }
    .instagram-float-btn .instagram-tooltip {
        display: none;
    }
    .video-section {
        padding: 40px 15px;
    }
    .video-section .container {
        max-width: 100%;
        padding: 0 15px;
    }
    .video-section .section-title {
        font-size: 1.8rem;
    }
    .video-section .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}
