 :root {
            --verde-matcha: #a6c1a6;
            --verde-oscuro: #4a5d4a;
            --beige: #f5f1e8;
            --marron: #8b7355;
            --texto: #333333;
        }

.shadow-img{
    box-shadow: 20px 20px 0px #5a7d5c;
}

/* Estilos para la sección de blog */
        .blog-section {
            padding: 80px 0;
            background-color: var(--beige);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--verde-oscuro);
            font-size: 2.5rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background-color: var(--verde-matcha);
            margin: 15px auto;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-date {
            color: var(--marron);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .blog-title {
            color: var(--verde-oscuro);
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .blog-excerpt {
            color: var(--texto);
            margin-bottom: 20px;
        }
        
        .read-more {
            color: var(--verde-matcha);
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more:after {
            content: '→';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover:after {
            transform: translateX(5px);
        }
        
        /* Estilos para la sección de contacto */
        .contact-section {
            padding: 80px 0;
            background-color: var(--verde-oscuro);
            color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h3, .contact-form h3 {
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .contact-info p {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 15px;
            color: var(--verde-matcha);
            font-size: 1.2rem;
        }
        
        .social-links {
            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: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--verde-matcha);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 4px;
            background-color: rgba(255,255,255,0.9);
            font-size: 1rem;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--verde-matcha);
            color: var(--verde-oscuro);
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #b8d0b8;
        }
        
        /* Estilos para el footer */
        .footer {
            background-color: #2a352a;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h4 {
            margin-bottom: 20px;
            color: var(--verde-matcha);
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--verde-matcha);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaaaaa;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }