/* Sección Sobre Nosotros */
.about-section {
    padding: 80px 30px;
    background-color: #f8fafc;
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 65% 35%; /* Video ocupa 65%, texto 35% */
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    height: 500px; /* Altura fija más grande */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- About Section Video Styles --- */
.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.about-video:hover {
    transform: scale(1.02);
}

.about-fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Controles personalizados del video */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 16px 16px;
}

.about-image:hover .video-controls {
    opacity: 1;
}

.controls-overlay {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.control-btn:active {
    transform: scale(1.05);
}

.play-pause-btn {
    background: linear-gradient(135deg, var(--accent-color), #e59001);
    border-color: var(--accent-color);
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, #e59001, var(--accent-color));
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Barra de progreso */
.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #e59001);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-bar-container:hover .progress-fill::after {
    opacity: 1;
}

.about-content {
    padding: 20px;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.2rem;
}

.about-content p:last-of-type {
    margin-bottom: 0;
}

.catalog-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.catalog-link:hover {
    color: #e59001;
}

/* Sección adicional debajo del video */
.about-additional-content {
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.craftsman-story {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.craftsman-story h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.craftsman-story p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.2rem;
    text-align: left;
}

.craftsman-story p:last-child {
    margin-bottom: 0;
}

.btn-about {
    background-color: #333;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin-top: 10px;
}

.btn-about:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Sección de Nuestro Proceso */
.process-section {
    padding: 100px 30px;
    background-color: #f8f8f8;
    position: relative;
}

.process-section .section-header {
    margin-bottom: 40px;
}

.process-section .section-header h2 {
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--primary-color);
}

.header-underline {
    width: 120px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 5px auto 30px;
    border-radius: 2px;
}

.process-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    background-color: rgba(245, 245, 245, 0.9);
    padding: 30px;
    border-radius: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-description p {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-description p:last-child {
    margin-bottom: 0;
}

.process-link {
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
    text-decoration: none;
}

.process-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.process-link:hover:after {
    height: 4px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 20px;
}

.step-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.process-step p {
    color: #555;
    font-size: 1rem;
}

@media (max-width: 1366px) {
    .process-section {
        padding: 70px 15px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .process-step {
        padding: 20px 15px;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 70px 15px;
    }

    .about-grid {
        grid-template-columns: 60% 40%;
        gap: 30px;
    }
    
    .about-image {
        height: 450px;
    }

    .about-content h2 {
        font-size: 2.1rem;
    }

    .about-content p {
        font-size: 1rem;
    }
    
    .about-additional-content {
        margin-top: 35px;
    }
    
    .craftsman-story {
        padding: 0;
    }
    
    .craftsman-story h3 {
        font-size: 2.1rem;
    }
    
    .craftsman-story p {
        font-size: 1rem;
    }
    
    .control-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .play-pause-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .video-controls {
        padding: 18px;
    }

    .testimonials-section {
        padding: 70px 15px;
    }

    .google-reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .google-review-card {
        padding: 20px;
    }
}

@media (max-width: 1200px) {
    .process-section {
        padding: 60px 12px;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }

    .process-step {
        padding: 18px 12px;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    .about-section {
        padding: 60px 12px;
    }

    .about-grid {
        grid-template-columns: 60% 40%;
        gap: 25px;
    }
    
    .about-image {
        height: 450px;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-additional-content {
        margin-top: 30px;
    }
    
    .craftsman-story {
        padding: 0;
    }
    
    .craftsman-story h3 {
        font-size: 1.9rem;
    }
    
    .craftsman-story p {
        font-size: 0.95rem;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .video-controls {
        padding: 16px;
    }

    .testimonials-section {
        padding: 60px 12px;
    }

    .google-reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }

    .google-review-card {
        padding: 18px;
    }

    .google-rating-average {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 15px;
        overflow-x: hidden;
    }

    .process-steps {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }
    
    .process-step {
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
        padding: 25px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .process-description {
        padding: 25px 20px;
        margin-bottom: 40px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .process-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-section {
        padding: 60px 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-image {
        height: 400px;
        order: 1;
    }

    .about-content {
        order: 2;
        padding: 0;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
    
    .about-additional-content {
        margin-top: 30px;
    }
    
    .craftsman-story {
        padding: 0;
    }
    
    .craftsman-story h3 {
        font-size: 2rem;
    }
    
    .craftsman-story p {
        font-size: 1rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .play-pause-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .video-controls {
        padding: 15px;
    }
    
    .controls-overlay {
        gap: 12px;
        margin-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 50px 15px;
    }

    .process-description {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .process-description p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .process-steps {
        gap: 30px;
    }

    .process-step {
        padding: 20px 15px;
        max-width: 280px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .step-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        font-weight: 700;
        bottom: -8px;
        right: -8px;
    }

    .process-step h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .process-step p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .about-section {
        padding: 40px 15px;
    }
    
    .about-image {
        height: 300px;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .btn-about {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .about-additional-content {
        margin-top: 25px;
    }
    
    .craftsman-story {
        padding: 0;
    }
    
    .craftsman-story h3 {
        font-size: 1.6rem;
    }
    
    .craftsman-story p {
        font-size: 0.9rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .video-controls {
        padding: 12px;
    }
    
    .controls-overlay {
        gap: 10px;
        margin-bottom: 10px;
    }
}

/* Móviles ultra pequeños */
@media (max-width: 400px) {
    .process-section {
        padding: 40px 12px;
    }

    .process-description {
        padding: 18px 12px;
        margin-bottom: 25px;
        font-size: 0.9rem;
    }

    .process-description p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .process-steps {
        gap: 25px;
    }

    .process-step {
        padding: 18px 12px;
        max-width: 260px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .step-icon img {
        width: 45px;
        height: 45px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        bottom: -6px;
        right: -6px;
    }

    .process-step h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .about-section {
        padding: 40px 15px;
    }
    
    .about-image {
        height: 250px;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .about-additional-content {
        margin-top: 20px;
    }
    
    .craftsman-story {
        padding: 0;
    }
    
    .craftsman-story h3 {
        font-size: 1.6rem;
    }
    
    .craftsman-story p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .play-pause-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .video-controls {
        padding: 10px;
    }
    
    .controls-overlay {
        gap: 8px;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .header-underline {
        width: 80px;
        height: 3px;
    }
}

/* Móviles extremadamente pequeños */
@media (max-width: 320px) {
    .process-section {
        padding: 35px 10px;
    }

    .process-description {
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .process-description p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step {
        padding: 15px 10px;
        max-width: 240px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .step-icon img {
        width: 40px;
        height: 40px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        bottom: -5px;
        right: -5px;
    }

    .process-step h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .process-step p {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .header-underline {
        width: 60px;
        height: 2px;
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 896px) and (orientation: landscape) and (max-height: 414px) {
    .process-section {
        padding: 30px 15px;
    }

    .process-description {
        padding: 15px 20px;
        margin-bottom: 20px;
        max-width: 600px;
    }

    .process-description p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .process-steps {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        max-width: 800px;
    }

    .process-step {
        flex: 1;
        padding: 15px 8px;
        max-width: none;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .step-icon img {
        width: 35px;
        height: 35px;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
        bottom: -4px;
        right: -4px;
    }

    .process-step h3 {
        font-size: 0.8rem;
        margin-bottom: 4px;
        line-height: 1.1;
    }

    .process-step p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

/* Sección Por Qué Elegirnos */
.why-us-section {
    position: relative;
    padding: 120px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

/* Video de fondo */
.why-us-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.background-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

/* Contenido superpuesto */
.why-us-section .section-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 11;
}

.why-us-section .section-header h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.why-us-section .header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    margin: 0 auto 25px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.why-us-section .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Botones de control con efecto pulso */
.why-us-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 12;
}

.control-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.control-btn.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.control-btn .btn-text {
    position: relative;
    z-index: 2;
}

/* Efecto de pulso */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 107, 53, 0.6);
    border-radius: 50px;
    opacity: 0;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.control-btn.active .pulse-ring {
    animation-play-state: running;
}

.control-btn:not(.active) .pulse-ring {
    animation-play-state: paused;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Slider de contenido */
.why-us-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
    z-index: 11;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Slides inicialmente visibles */
.why-us-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.why-us-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

/* Visual del slide */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.visual-content {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.visual-content:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.icon-circle i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Información del slide */
.slide-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.slide-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-slide {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    margin-top: 20px;
}

.btn-slide:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Asegurar visibilidad de elementos Why Us */
.why-us-section * {
    box-sizing: border-box;
}

.why-us-section .section-header h2,
.why-us-section .subtitle,
.control-btn,
.why-us-slide {
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Debug styles - remover después */
.control-btn {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.control-btn.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    border-color: #ff6b35 !important;
}

/* Forzar visualización del slider */
.why-us-slider {
    display: block !important;
    opacity: 1 !important;
}

.why-us-slide {
    display: grid !important;
}

.why-us-slide.active {
    opacity: 1 !important;
    display: grid !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-slide {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .visual-content {
        width: 250px;
        height: 250px;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .icon-circle i {
        font-size: 2.5rem;
    }
    
    .slide-info h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 80px 20px;
    }
    
    .why-us-controls {
        gap: 15px;
        margin-bottom: 60px;
    }
    
    .control-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .why-us-section .section-header h2 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .visual-content {
        width: 200px;
        height: 200px;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .icon-circle i {
        font-size: 2rem;
    }
    
    .slide-info {
        padding: 30px 20px;
    }
    
    .slide-info h3 {
        font-size: 1.5rem;
    }
    
    .slide-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-us-controls {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .control-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .visual-content {
        width: 180px;
        height: 180px;
    }
    
    .slide-info {
        padding: 25px 15px;
    }
}

/* Sección de Nuestros Servicios de Afilado */
.sharpening-services-section {
    padding: 100px 30px;
    background-color: #f8f8f8;
    color: #333;
    position: relative;
    overflow: hidden;
}

.sharpening-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1588935365434-9b5574f72511?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2560&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.sharpening-services-section .section-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.animated-header {
    text-align: center;
    margin-bottom: 60px;
}

.minimalist-title {
    color: #333;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(var(--accent-color-rgb), 0.5),
                     0 0 10px rgba(var(--accent-color-rgb), 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(var(--accent-color-rgb), 0.8),
                     0 0 30px rgba(var(--accent-color-rgb), 0.6),
                     0 0 45px rgba(var(--accent-color-rgb), 0.4);
    }
}

.sharpening-services-section .header-underline {
    background-color: var(--accent-color);
    width: 120px;
    height: 4px;
    margin: 15px auto 25px;
    border-radius: 2px;
}

.sharpening-services-section .subtitle {
    font-size: 1.3rem;
    margin-top: 5px;
    color: #e0e0e0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.tools-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 60px auto 0;
    position: relative;
    z-index: 5;
}

.tool-card {
    position: relative;
    height: 180px;
    cursor: pointer;
}

.tool-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.tool-card:hover .tool-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.tool-icon-wrapper {
    margin-bottom: 18px;
    transition: transform 0.3s ease;
    font-size: 40px;
    color: var(--accent-color);
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f8f8;
}

.tool-card:hover .tool-icon-wrapper {
    transform: scale(1.1);
    background-color: var(--accent-color);
    color: white;
}

.tool-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.tool-card:hover h3 {
    color: var(--accent-color);
}

.tool-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: #f8f8f8;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tool-card:hover .tool-overlay {
    opacity: 1;
}

.tool-detail {
    display: inline-block;
    padding: 4px 12px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.services-banner {
    margin-top: 80px;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.banner-content {
    background: white;
    border-radius: 8px;
    padding: 40px 20px;
    position: relative;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.services-banner:hover .banner-content {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.banner-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 0;
    color: #777;
    transition: all 0.3s ease;
}

.banner-divider {
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 20px auto;
    transition: all 0.3s ease;
}

.services-banner:hover .banner-divider {
    width: 150px;
}

.banner-text-large {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 10px 0 0;
    color: #333;
    transition: all 0.3s ease;
}

.services-banner:hover .banner-text-large {
    color: var(--accent-color);
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

/* Scripts requeridos para Lottie */
.services-header-script {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .tools-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .banner-text-large {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .tools-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tool-card {
        height: 170px;
    }
    
    .banner-text {
        font-size: 1.1rem;
    }
    
    .banner-text-large {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .tools-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tool-card {
        height: 160px;
    }
    
    .banner-text {
        font-size: 1rem;
    }
    
    .banner-text-large {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tools-container {
        grid-template-columns: 1fr;
    }
    
    .tool-card {
        height: 150px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .banner-text-large {
        font-size: 1.3rem;
    }
}

/* Sección de Testimonios - Estilo Google Reviews */
.testimonials-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

/* Google Reviews Header */
.google-reviews-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.google-reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.google-reviews-logo {
    width: 80px;
    height: auto;
}

.google-rating-summary {
    text-align: left;
}

.google-rating-average {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1;
}

.google-rating-stars {
    color: #fbbc04;
    font-size: 1.2rem;
    margin: 5px 0;
}

.google-rating-count {
    color: #5f6368;
    font-size: 0.9rem;
}

/* Google Reviews Grid */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.google-review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8eaed;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #202124;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-date {
    color: #5f6368;
    font-size: 0.8rem;
}

.review-rating {
    color: #fbbc04;
    font-size: 1rem;
    margin-bottom: 15px;
}

.review-text {
    color: #3c4043;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
}

.google-icon {
    width: 20px;
    height: auto;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .google-reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .google-review-card {
        padding: 20px;
    }
    
    .google-rating-average {
        font-size: 2rem;
    }
}

/* Responsive para testimonios */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 20px;
    }

    .google-reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .google-reviews-header {
        margin-bottom: 40px;
    }

    .google-rating-average {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 15px;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .google-reviews-header {
        text-align: center;
    }

    .google-reviews-summary {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .google-reviews-logo {
        width: 100px;
        height: auto;
    }

    .google-rating-average {
        font-size: 2.2rem;
    }

    .google-rating-count {
        font-size: 0.9rem;
    }

    .google-review-card {
        padding: 20px;
    }

    .reviewer-name {
        font-size: 0.9rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 50px 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .google-rating-average {
        font-size: 2rem;
    }

    .google-review-card {
        padding: 15px;
    }

    .reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .reviewer-name {
        font-size: 0.85rem;
    }

    .review-date {
        font-size: 0.75rem;
    }

    .review-text {
        font-size: 0.85rem;
    }
}

/* Eliminar estilos antiguos */
.testimonial-card,
.testimonials-slider {
    display: none;
}
