/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    padding-top: 80px;
}

/* Encabezado flotante */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    z-index: 1000;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Menú de navegación */
.nav-menu {
    flex: 1;
    margin: 0 20px;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #1A5276;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1A5276;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #1A5276;
    padding-left: 25px;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #1A5276;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.whatsapp-btn i {
    font-size: 18px;
}

.whatsapp-btn:hover {
    background-color: #1e5d85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Botón menú hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333333;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Sección Hero con imagen */
.hero {
    padding: 40px 20px;
    min-height: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin: 40px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-content p:last-of-type {
    font-style: italic;
    color: #1A5276;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1A5276;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background-color: #1e5d85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background-color: transparent;
    color: #1A5276;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid #1A5276;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background-color: #1A5276;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 450px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Media queries para la sección Hero */
@media screen and (max-width: 992px) {
    .hero-container {
        gap: 30px;
    }
    
    .hero-image {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 30px 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: 1;
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 20px 10px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        text-align: center;
        justify-content: center;
    }
}

/* ===== SECCIÓN DE TARJETAS MEJORADA ===== */
.features {
    padding: 80px 20px;
    background-color: #ffffff;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1A5276;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: left;
    padding: 30px;
    border-radius: 20px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1A5276;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1A5276;
    border-radius: 3px;
}

.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.02);
}

.feature-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Estilo para el primer párrafo (descripción principal) */
.feature-card p:first-of-type {
    font-weight: 400;
    border-left: 4px solid #1A5276;
    padding-left: 20px;
    background: linear-gradient(to right, rgba(0, 102, 204, 0.05), transparent);
    padding: 20px;
    border-radius: 10px;
    font-style: italic;
    box-shadow: inset 0 0 0 1px rgba(0, 102, 204, 0.1);
}

/* Estilo para el segundo párrafo (incluye/recomendación) */
.feature-card p:last-of-type {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.feature-card p strong {
    color: #1A5276;
    font-weight: 600;
}

.feature-card p:last-of-type strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-bottom: 2px solid #1A5276;
    padding-bottom: 8px;
    color: #1A5276;
}

/* ===== NUEVA SECCIÓN DE MARCAS ===== */
.brands-section {
    padding: 60px 20px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
}

.brands-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.brands-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1A5276;
}

.brands-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.brand-item {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.15);
    background-color: white;
    border-color: #1A5276;
}

.brand-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
    opacity: 1;
}

/* Sección About Company (dos columnas antes del footer) */
.about-company {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #1A5276;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}

.about-image {
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Anchor sections */
.anchor-section {
    scroll-margin-top: 100px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-left {
    flex: 1;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: #1A5276;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #1A5276;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

/* Diseño responsive */
@media screen and (max-width: 992px) {
    .header {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 30px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    /* Marcas responsive */
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        margin: 10px;
        width: calc(100% - 20px);
        left: 10px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
        padding: 10px;
    }
    
    /* Dropdown en móvil */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f5f5f5;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
        margin: 0;
    }
    
    .whatsapp-btn {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Hero responsive */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        order: -1;
    }
    
    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Marcas responsive */
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .brand-item {
        height: 100px;
        padding: 15px;
    }
    
    /* About responsive */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image {
        order: 2;
        min-height: 350px;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-title {
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
    
    /* Footer responsive */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        justify-content: center;
    }
    
    .footer-right {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card img {
        height: 180px;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-item {
        height: 90px;
        padding: 12px;
    }
    
    .about-company {
        padding: 40px 15px;
    }
    
    .about-image {
        min-height: 250px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 320px) {
    .whatsapp-btn {
        padding: 8px 12px;
    }
    
    .logo img {
        height: 25px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos existentes */

/* Estilos específicos para la página de lavadoras */

.lavadoras-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); /* Cambiar el fondo por un azul claro */
}

.lavadoras-services {
    background-color: #f5f5f5;
}

.lavadoras-services h2 {
    text-align: center;
    margin-bottom: 50px;
}

.lavadoras-services .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.lavadoras-services .service-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lavadoras-services .service-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.lavadoras-contacto {
    background-color: #007bff;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.lavadoras-contacto h2 {
    margin-bottom: 20px;
}

.lavadoras-contacto p {
    margin-bottom: 40px;
}

.lavadoras-contacto .contacto-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lavadoras-contacto .contacto-btn-primary {
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.lavadoras-contacto .contacto-btn-secondary {
    background-color: white;
    color: #007bff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Media queries para la página de lavadoras */

@media (max-width: 768px) {
    .lavadoras-services .services-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Estilos de la Galería --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #1A5276;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.3s ease;
    font-weight: bold;
}

.gallery-item:hover .gallery-overlay {
    height: 100%;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   NUEVOS ESTILOS PARA PÁGINA DE LAVADORAS Y FLOTANTE
   =================================================== */

/* --- 1. Botón Flotante de WhatsApp --- */
.whatsapp-floating {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Verde oficial WhatsApp */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 2000; /* Por encima de todo, incluido el header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-floating:hover {
    background-color: #128c7e; /* Tono más oscuro al hover */
    transform: scale(1.1) rotate(5deg);
}

/* Animación opcional de pulso para el botón flotante */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-floating {
    animation: pulse-green 2s infinite;
}


/* --- 2. Ajustes para la sección de servicios con Iconos --- */

/* Contenedor específico para esta sección si quieres un fondo diferente */
.lavadoras-services-section {
    background-color: #ffffff; /* O #f8f9fa si prefieres gris muy claro */
}

/* Estilos para las tarjetas que usan iconos en lugar de img */
.service-item-card {
    align-items: center; /* Centrar contenido de la tarjeta */
    text-align: center;
}

/* Contenedor del icono */
.service-icon-container {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 102, 204, 0.1); /* Azul muy suave de fondo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid #1A5276;
}

/* El icono en sí */
.service-icon-container i {
    font-size: 40px;
    color: #1A5276; /* Azul principal */
}

/* Ajuste del título de la tarjeta cuando no hay imagen encima */
.service-item-card h3 {
    margin-top: 0;
    padding-bottom: 10px;
}

/* Ajuste del párrafo destacado (el primero) */
.service-item-card p:first-of-type {
    border-left: none; /* Quitamos el borde lateral del diseño original */
    border-bottom: 3px solid #1A5276; /* Ponemos borde abajo */
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* --- Media Queries para el botón flotante --- */
@media screen and (max-width: 768px) {
    .whatsapp-floating {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 30px;
    }
}

/* Estilos específicos para las tarjetas de servicios con iconos */
.service-lavadora-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px !important; /* Espaciado interno extra */
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f0f7ff; /* Azul muy claro de fondo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid #1A5276; /* Borde con tu azul principal */
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 32px;
    color: #1A5276;
}

/* Efecto al pasar el mouse por la tarjeta */
.feature-card:hover .icon-circle {
    background-color: #1A5276;
    transform: rotateY(360deg);
}

.feature-card:hover .icon-circle i {
    color: white;
}

/* Ajuste para que se vean 2 y 2 en pantallas medianas si son 4 servicios */
@media screen and (max-width: 1100px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===================================================
   NUEVOS ESTILOS PARA SECCIÓN TEXTO PROFESIONAL SEO
   =================================================== */

.lavadoras-seo-section {
    background-color: #ffffff; /* O #f8f9fa si prefieres un gris muy claro de fondo */
    padding: 60px 20px 80px; /* Reducimos el padding superior respecto a .features */
}

/* Contenedor principal del bloque de texto */
.seo-content-block {
    text-align: left; /* Alineación del texto a la izquierda para mejor lectura */
    color: #444; /* Un tono de gris oscuro pero suave */
}

/* Estilo para los títulos H2 (ya heredado, pero para asegurar consistencia) */
.seo-content-block h2 {
    margin-bottom: 40px;
}

/* Estilo para los títulos H3 dentro de este bloque */
.seo-content-block h3 {
    font-size: 1.8rem;
    color: #1A5276; /* Tu azul principal */
    margin-top: 50px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

/* Línea decorativa lateral para los H3 */
.seo-content-block h3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #1A5276;
    border-radius: 4px;
}

/* Estilo para los párrafos dentro de este bloque */
.seo-content-block p {
    font-size: 1.1rem;
    line-height: 1.9; /* Un poco más de espaciado entre líneas */
    margin-bottom: 20px;
    text-align: justify; /* Justificado para dar un aspecto más formal */
}

/* Estilo para las palabras clave destacadas */
.seo-content-block p strong {
    color: #1A5276;
    font-weight: 600; /* Un poco más de peso al texto resaltado */
}

/* === NUEVA CUADRÍCULA MINI DE FALLAS COMUNES === */
.seo-fallas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0 50px;
}

.falla-item-mini {
    background-color: #f8f9fa; /* Gris muy claro */
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.falla-item-mini:hover {
    background-color: #f0f7ff; /* Azul muy claro de fondo */
    border-color: #1A5276;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

.falla-item-mini i {
    font-size: 20px;
    color: #1A5276; /* Tu azul principal */
    width: 30px;
    text-align: center;
}

.falla-item-mini h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    color: #333;
}

/* === LLAMADO A LA ACCIÓN FINAL === */
.seo-call-to-action {
    background-color: rgba(0, 102, 204, 0.05); /* Azul muy suave */
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed #1A5276; /* Borde punteado azul */
    text-align: center;
    margin-top: 60px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02);
}

.seo-call-to-action p {
    font-size: 1.2rem;
    text-align: center; /* Volvemos a centrar este párrafo */
    margin-bottom: 25px;
}

.seo-cta-btn {
    display: inline-block; /* Aseguramos que se comporte como botón */
    font-size: 1.1rem;
}

/* === MEDIA QUERIES PARA LA NUEVA SECCIÓN === */

@media screen and (max-width: 768px) {
    .seo-content-block p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left; /* Volvemos a izquierda en móvil */
    }
    
    .seo-fallas-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .falla-item-mini {
        padding: 12px;
    }
    
    .seo-call-to-action {
        padding: 20px;
    }
}