/**
 * Estilos para páginas individuales de tratamientos
 * Microdental QH Theme
 */

/* ========================================
   HERO BANNER DE TRATAMIENTOS
   ======================================== */
.single-tratamiento .treatment-hero {
    background: linear-gradient(135deg, #B85170 0%, #D17A94 100%);
    background-color: #B85170;
    background-color: var(--color-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Patrón decorativo opcional */
.single-tratamiento .treatment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Contenedor del hero */
.single-tratamiento .treatment-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Contenido del hero */
.single-tratamiento .hero-content {
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Título del tratamiento */
.single-tratamiento .tratamiento-title {
    color: #ffffff !important;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    display: block;
    width: 100%;
}

/* Subtítulo/Excerpt */
.single-tratamiento .tratamiento-excerpt {
    color: #ffffff !important;
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.95;
    display: block;
    width: 100%;
}

.single-tratamiento .tratamiento-excerpt p {
    color: #ffffff !important;
    margin: 0;
}

/* Responsive para tablets */
@media (max-width: 768px) {
    .single-tratamiento .treatment-hero {
        padding: 100px 0 60px;
        min-height: 350px;
    }
    
    .single-tratamiento .tratamiento-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .single-tratamiento .tratamiento-excerpt {
        font-size: 18px;
        padding: 0 20px;
    }
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .single-tratamiento .treatment-hero {
        padding: 80px 0 50px;
        min-height: 300px;
    }
    
    .single-tratamiento .tratamiento-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .single-tratamiento .tratamiento-excerpt {
        font-size: 16px;
    }
}

/* Animación suave al cargar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.single-tratamiento .tratamiento-title {
    animation: fadeInUp 0.6s ease-out;
}

.single-tratamiento .tratamiento-excerpt {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ========================================
   IMÁGENES EN CONTENIDO DE TRATAMIENTOS
   ======================================== */
.single-tratamiento .entry-content > p:first-child {
    margin-bottom: 3rem;
}

.single-tratamiento .entry-content > p:first-child img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    max-height: 500px;
}

/* Hacer que cualquier imagen con width="420" ocupe el ancho completo */
.single-tratamiento .entry-content img[width="420"] {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    max-height: 500px;
}

/* Responsive para imágenes - mantener ancho completo */
@media (max-width: 768px) {
    .single-tratamiento .entry-content > p:first-child img,
    .single-tratamiento .entry-content img[width="420"] {
        width: 100%;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .single-tratamiento .entry-content > p:first-child img,
    .single-tratamiento .entry-content img[width="420"] {
        width: 100%;
        max-height: 300px;
    }
}

/* ========================================
   PESTAÑAS PARA ODONTOPEDIATRÍA
   ======================================== */
.treatments-tabs-section {
    margin: 3rem 0;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.treatments-tabs-section h2 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

/* Navegación de pestañas */
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
}

.tab-button:hover {
    color: #B85170;
    background: rgba(183, 73, 110, 0.05);
}

.tab-button.active {
    color: #B85170;
    border-bottom-color: #B85170;
    background: rgba(183, 73, 110, 0.05);
}

/* Contenido de pestañas */
.tabs-content {
    padding: 2rem 0;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: #B85170;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tab-pane p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tab-pane strong {
    color: #333;
    font-weight: 600;
}

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

/* Responsive para pestañas */
@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab-button {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        border-left: 3px solid transparent;
    }
    
    .tab-button.active {
        border-bottom-color: #f0f0f0;
        border-left-color: #B85170;
    }
    
    .treatments-tabs-section {
        padding: 1rem;
    }
    
    .tab-pane h3 {
        font-size: 1.25rem;
    }
}

/* Hero Section */
.tratamiento-hero {
    position: relative;
    background: linear-gradient(135deg, #B85170 0%, #9A3E5C 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 73, 110, 0.9) 0%, rgba(158, 58, 92, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
    color: white;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
}

.badge-destacado {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-meta {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.meta-item svg {
    opacity: 0.9;
}

/* Content Section */
.tratamiento-content {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Controlar tamaño de SVGs e imágenes en el contenido */
.entry-content svg {
    max-width: 60px !important;
    max-height: 60px !important;
    height: auto !important;
    display: inline-block !important;
}

.entry-content img:not(.wp-post-image) {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.main-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.content-box {
    padding: 40px;
}

.content-box h2 {
    font-size: 2rem;
    color: #54595f;
    margin-bottom: 30px;
    font-family: 'Coolvetica', sans-serif;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.entry-content p {
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

.benefits-section h2 {
    font-size: 2rem;
    color: #54595f;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Coolvetica', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Timeline Section para Endodoncia */
.timeline-section {
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin: 30px 0;
}

.timeline-section h3 {
    font-size: 1.8rem;
    color: #54595f;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Coolvetica', sans-serif;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, #B85170 0%, #B85170 50%, #B85170 100%);
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: #B85170;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(183, 73, 110, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(183, 73, 110, 0.4);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    padding: 0 10px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(183, 73, 110, 0.1);
    margin: 30px 0;
}

.contact-form-section h3 {
    font-size: 2rem;
    color: #54595f;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Coolvetica', sans-serif;
}

.form-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.treatment-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B85170;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 18px 30px;
    background: #B85170;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(183, 73, 110, 0.3);
}

.btn-submit:hover {
    background: #9A3E5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 73, 110, 0.4);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.faqs-section {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #e9ecef;
}

.faqs-section h3 {
    font-size: 1.8rem;
    color: #54595f;
    margin-bottom: 30px;
    margin-left: 20px;
    font-family: 'Coolvetica', sans-serif;
}

.faqs-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 20px;
    margin-right: 20px;
}

.faq-item:hover {
    border-color: #B85170;
    box-shadow: 0 2px 8px rgba(183, 73, 110, 0.1);
}

.faq-item summary {
    cursor: pointer;
    padding: 20px 25px;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    padding-right: 40px;
    flex: 1;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #B85170;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid #e9ecef;
}

.faq-answer {
    padding: 20px;
    color: #666;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0 0 15px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 30px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Sidebar */
.treatment-sidebar {
    position: relative;
}

.sticky-box {
    position: sticky;
    top: 100px;
}

.cta-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(183, 73, 110, 0.15);
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.cta-box p {
    color: #666;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #B85170;
    color: white;
    box-shadow: 0 5px 20px rgba(183, 73, 110, 0.3);
}

.btn-primary:hover {
    background: #9A3E5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 73, 110, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #B85170;
    border: 2px solid #B85170;
}

.btn-secondary:hover {
    background: #B85170;
    color: white;
}

.clinics-info {
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
    text-align: left;
}

.clinics-info h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.clinic-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.clinic-item strong {
    display: block;
    color: #B85170;
    margin-bottom: 5px;
}

.clinic-item p {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #666;
}

.info-box {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #B85170;
}

.info-box h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.info-box p {
    color: #666;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #666;
}

.info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #B85170;
    font-weight: bold;
}

/* Formulario de contacto en sidebar */
.contact-form-box {
    border-left-color: #4a90e2;
}

.treatment-sidebar-form {
    margin-top: 15px;
}

.treatment-sidebar-form .form-group {
    margin-bottom: 15px;
}

.treatment-sidebar-form input[type="text"],
.treatment-sidebar-form input[type="tel"],
.treatment-sidebar-form input[type="email"],
.treatment-sidebar-form select,
.treatment-sidebar-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.treatment-sidebar-form input:focus,
.treatment-sidebar-form select:focus,
.treatment-sidebar-form textarea:focus {
    outline: none;
    border-color: #B85170;
    box-shadow: 0 0 0 3px rgba(183, 73, 110, 0.1);
}

.treatment-sidebar-form textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.treatment-sidebar-form .btn-submit {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #B85170 0%, #a13d5f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.treatment-sidebar-form .btn-submit:hover {
    background: linear-gradient(135deg, #a13d5f 0%, #8f3552 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 73, 110, 0.3);
}

.treatment-sidebar-form .btn-submit svg {
    width: 18px;
    height: 18px;
}

/* Related Treatments */
.related-treatments {
    padding: 80px 0;
    background: white;
}

.related-treatments h2 {
    font-size: 2.5rem;
    color: #54595f;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Coolvetica', sans-serif;
}

.treatments-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.treatment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.treatment-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.treatment-content {
    padding: 20px;
}

.treatment-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.treatment-content h3 a {
    color: #333;
    text-decoration: none;
}

.treatment-content h3 a:hover {
    color: #B85170;
}

.treatment-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-link {
    color: #B85170;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #B85170 0%, #9A3E5C 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Coolvetica', sans-serif;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: white;
    opacity: 1;
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
}

.final-cta .btn-primary,
.final-cta .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.final-cta .btn-primary:hover,
.final-cta .btn-secondary:hover {
    background: white;
    color: #B85170;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-box {
        position: relative;
        top: 0;
    }
    
    .timeline-container {
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .treatments-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .treatments-slider {
        grid-template-columns: 1fr;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
    }
    
    /* Timeline móvil */
    .timeline-container {
        flex-direction: column;
        max-width: 100%;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-item {
        display: flex;
        align-items: center;
        text-align: left;
        margin-bottom: 20px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
        margin: 0 20px 0 0;
    }
    
    .timeline-content {
        flex: 1;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        padding: 0;
    }
    
    /* Formulario móvil */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    /* FAQs móvil */
    .faqs-section {
        padding-top: 30px;
        margin-top: 30px;
    }
    
    .faqs-section h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        margin-left: 20px;
    }
    
    .faq-item {
        border-radius: 6px;
    }
    
    .faq-item summary {
        padding: 15px;
    }
    
    .faq-item summary h5 {
        font-size: 1rem;
        padding-right: 35px;
    }
    
    .faq-item summary::after {
        right: 15px;
        font-size: 1.3rem;
    }
    
    .faq-answer {
        padding: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .content-box h2,
    .benefits-section h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }
}