/* Reset y estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
            color: #333;
        }

        /* Barra superior */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 2rem;
            background-color: white;
            color: black;
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .logo img {
            height: 40px;
            width: auto;
        }
        .nav-links {
            display: flex;
            gap: 1.5rem;
        }
        .nav-links a {
            color: black;
            text-decoration: none;
            font-weight: 500;
        }
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        .social-icons a {
            color: black;
            font-size: 1.2rem;
        }

        /* Sección Hero (imagen fullscreen) */
        .hero {
            width: 100%;
            height: 100vh;
            position: relative;
        }
        .hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sección de Servicios */
        .services {
            padding: 5rem 2rem;
            background-color: #f9f9f9;
            text-align: center;
        }
        .services h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #4b7f39;
        }
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        .service-card {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .service-card h2 {
            color: #cad775;
            margin-bottom: 1rem;
        }
        .service-card p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        .service-card a {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }
        .service-icon {
            font-size: 2.5rem;
            color: black; /* Rojo vibrante (ajusta el color) */
            margin-bottom: 1rem;
        }

        /* Opcional: Animación al pasar el mouse*/
        .service-icon i {
            transition: transform 0.3s;
        }
        .service-card:hover .service-icon i {
            transform: scale(1.1);
        } 

       

                /* Sección 3: Experiencia y asociación */
        .about-section {
            display: flex;
            align-items: center;
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            gap: 3rem;
        }

        /* Columna de imágenes (izquierda) */
        .image-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .image-column img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Columna de texto (derecha) */
        .text-column {
            flex: 1;
        }
        .text-column h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }
        .text-column h2 span {
            color: #4b7f39; /* Color destacado */
        }
        .text-column p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #555;
        }

        /* Responsive: Apilar en móviles */
        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
            }
        }

        /* Sección 4: servicios */

        .services-section {
            padding: 5rem 2rem;
            background-color: #f8f9fa;
            text-align: center;
        }
        
        .services-title {
            font-size: 2.5rem;
            color: #4b7f39;
            margin-bottom: 1rem;
        }
        
        .services-subtitle {
            font-size: 1.2rem;
            color: black;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* .service-icon {
            font-size: 2.5rem;
            color: #e74c3c;
            margin-bottom: 1.5rem;
        } */
        
        .service-name {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .service-description {
            color: #7f8c8d;
            line-height: 1.6;
        }

        /* Estilos generales del footer */
        .custom-footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            font-family: 'Arial', sans-serif;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        

        .footer-logo img {
            max-width: 180px;
            height: auto;
            filter: brightness(0) invert(1); /* Convierte el logo a blanco */
            transition: opacity 0.3s;
        }

        .footer-logo img:hover {
            opacity: 0.8;
        }

        /* Ajustes responsive para el logo */
        @media (max-width: 768px) {
            .footer-logo {
                margin-top: 20px;
                padding-top: 15px;
            }
            
            .footer-logo img {
                max-width: 140px;
            }
        }
        
        /* Sección de Noticias */
        .news-section {
            flex: 2;
            min-width: 300px;
        }
        
        .news-title {
            color: #f39c12;
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .news-item {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #ecf0f1;
            padding-bottom: 15px;
            border-bottom: 1px solid #34495e;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        /* Sección de Cotización */
        .quote-section {
            flex: 1;
            min-width: 250px;
            background-color: #34495e;
            padding: 25px;
            border-radius: 8px;
            height: fit-content;
        }
        
        .quote-title {
            color: #f39c12;
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .quote-text {
            margin-bottom: 25px;
            line-height: 1.6;
            color: #ecf0f1;
        }
        
        .contact-btn {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
        }
        
        /* Copyright */
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 14px;
            width: 100%;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .news-section, .quote-section {
                width: 100%;
            }
        }