 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-dark: #1e4a52;
     --primary-light: #a4c73c;
     --secondary-green: #6aa84f;
     --accent-gray: #e8e8e8;
     --dark-text: #2c2c2c;
     --white: #ffffff;
 }

 body {
     font-family: 'Poppins', sans-serif;
     line-height: 1.6;
     color: var(--dark-text);
     overflow-x: hidden;
 }

 /* Header/Navigation */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     padding: 1rem 0;
     transition: all 0.3s ease;
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--primary-dark);
 }

 .logo span {
     color: var(--primary-light);
 }

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2rem;
 }

 .nav-menu a {
     text-decoration: none;
     color: var(--dark-text);
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .nav-menu a:hover {
     color: var(--primary-light);
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background: var(--primary-dark);
     margin: 3px 0;
     transition: 0.3s;
 }

 /* Language Selector */
 .lang-selector {
     position: relative;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     border-radius: 50px;
     transition: all 0.3s ease;
 }

 .lang-selector:hover {
     background: var(--accent-gray);
 }

 .lang-selector i {
     color: var(--primary-dark);
     font-size: 1.2rem;
 }

 .lang-dropdown {
     position: absolute;
     top: 100%;
     right: 0;
     background: var(--white);
     box-shadow: 0 10px 30px rgba(30, 74, 82, 0.15);
     border-radius: 12px;
     min-width: 150px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
     z-index: 1001;
     padding: 0.5rem 0;
     list-style: none;
 }

 .lang-selector:hover .lang-dropdown {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .lang-dropdown li {
     padding: 0.8rem 1.5rem;
     transition: background 0.3s ease;
 }

 .lang-dropdown li:hover {
     background: var(--accent-gray);
 }

 .lang-dropdown a {
     text-decoration: none;
     color: var(--dark-text);
     font-size: 0.9rem;
     font-weight: 500;
     display: block;
 }

 .lang-dropdown li.active {
     background: var(--primary-light);
 }

 .lang-dropdown li.active a {
     color: var(--primary-dark);
 }

 @media (max-width: 768px) {
     .lang-selector {
         margin-top: 1rem;
         justify-content: center;
     }

     .lang-dropdown {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         background: transparent;
         display: flex;
         justify-content: center;
         gap: 1rem;
     }

     .lang-dropdown li {
         padding: 0.5rem 1rem;
         border-radius: 20px;
         border: 1px solid var(--accent-gray);
     }
 }

 /* Hero Section */
 .hero {
     height: 100vh;
     background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-green) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     opacity: 0.3;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 900px;
     padding: 0 2rem;
 }

 .hero h1 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     opacity: 0;
     animation: fadeInUp 1s ease forwards 0.5s;
 }

 .hero p {
     font-size: 1.3rem;
     margin-bottom: 2rem;
     opacity: 0;
     animation: fadeInUp 1s ease forwards 0.7s;
 }

 .cta-button {
     display: inline-block;
     padding: 15px 40px;
     background: var(--primary-light);
     color: var(--primary-dark);
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s ease;
     opacity: 0;
     animation: fadeInUp 1s ease forwards 0.9s;
 }

 .cta-button:hover {
     background: var(--white);
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 /* About Section */
 .about {
     padding: 100px 0;
     background: var(--white);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .section-title {
     text-align: center;
     font-size: 2.8rem;
     font-weight: 600;
     margin-bottom: 3rem;
     color: var(--primary-dark);
 }

 .about-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 3rem;
     margin-top: 4rem;
 }

 .about-card {
     background: var(--white);
     padding: 2.5rem;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(30, 74, 82, 0.1);
     text-align: center;
     transition: transform 0.3s ease;
     border: 2px solid var(--accent-gray);
 }

 .about-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary-light);
 }

 .about-card i {
     font-size: 3.5rem;
     color: var(--primary-light);
     margin-bottom: 1.5rem;
 }

 .about-card h3 {
     font-size: 1.6rem;
     margin-bottom: 1rem;
     color: var(--primary-dark);
 }

 .about-card p {
     color: var(--dark-text);
     line-height: 1.7;
 }

 /* Portfolio Section */
 .portfolio {
     padding: 100px 0;
     background: var(--accent-gray);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     text-align: center;
     font-size: 2.8rem;
     font-weight: 600;
     margin-bottom: 3rem;
     color: var(--primary-dark);
 }

 /* Portfolio Section */
 .portfolio {
     padding: 50px 0;
 }

 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2.5rem;
     margin-top: 4rem;
 }

 .portfolio-item {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     height: 300px;
     cursor: pointer;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 .portfolio-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

 /* Overlay que aparece en hover */
 .portfolio-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(30, 74, 82, 0.9);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     opacity: 0;
     transition: opacity 0.3s ease;
     color: white;
     text-align: center;
     padding: 2rem;
 }

 .portfolio-item:hover .portfolio-overlay {
     opacity: 1;
 }

 .portfolio-overlay h3 {
     font-size: 1.8rem;
     margin-bottom: 0.5rem;
     color: var(--primary-light);
 }

 .portfolio-overlay p {
     font-size: 1rem;
     margin-bottom: 2rem;
     line-height: 1.5;
 }

 .portfolio-buttons {
     display: flex;
     gap: 1rem;
 }

 .portfolio-btn {
     padding: 12px 20px;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 500;
     transition: all 0.3s ease;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .btn-visit {
     background: var(--primary-light);
     color: var(--primary-dark);
 }

 .btn-visit:hover {
     background: var(--white);
     transform: translateY(-2px);
 }

 .btn-preview {
     background: rgba(255, 255, 255, 0.2);
     color: white;
     border: 2px solid rgba(255, 255, 255, 0.3);
 }

 .btn-preview:hover {
     background: rgba(255, 255, 255, 0.3);
     border-color: rgba(255, 255, 255, 0.5);
     transform: translateY(-2px);
 }

 /* Modal para imagen completa */
 .image-modal {
     display: none;
     position: fixed;
     z-index: 9999;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     animation: fadeIn 0.3s ease;
 }

 .image-modal.active {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .modal-content {
     max-width: 90%;
     max-height: 90%;
     border-radius: 10px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
 }

 .modal-image {
     width: 100%;
     height: 100%;
     object-fit: contain;
     border-radius: 10px;
 }

 .close-modal {
     position: absolute;
     top: 20px;
     right: 30px;
     color: white;
     font-size: 3rem;
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .close-modal:hover {
     color: var(--primary-light);
 }

 /* Animaciones */
 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .portfolio-grid {
         grid-template-columns: 1fr;
     }

     .portfolio-item {
         height: 250px;
     }

     .portfolio-buttons {
         flex-direction: column;
         width: 100%;
     }

     .portfolio-btn {
         width: 100%;
         justify-content: center;
     }
 }

 .ecommerce {
     background: linear-gradient(135deg, var(--primary-dark), var(--secondary-green));
 }

 .corporativo {
     background: linear-gradient(135deg, var(--primary-light), var(--secondary-green));
 }

 .restaurante {
     background: linear-gradient(135deg, var(--secondary-green), var(--primary-dark));
 }

 .landing {
     background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
 }

 /* Services Section */
 .services {
     padding: 100px 0;
     background: var(--white);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 3rem;
     margin-top: 4rem;
 }

 .service-card {
     background: var(--white);
     padding: 2.5rem;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(30, 74, 82, 0.1);
     text-align: center;
     border: 2px solid var(--accent-gray);
     transition: all 0.3s ease;
 }

 .service-card:hover {
     border-color: var(--primary-light);
     transform: translateY(-5px);
 }

 .service-card i {
     font-size: 3.5rem;
     color: var(--primary-light);
     margin-bottom: 1.5rem;
 }

 .service-card h3 {
     font-size: 1.6rem;
     margin-bottom: 1.5rem;
     color: var(--primary-dark);
 }

 .service-list {
     list-style: none;
     text-align: left;
 }

 .service-list li {
     padding: 0.7rem 0;
     border-bottom: 1px solid var(--accent-gray);
     color: var(--dark-text);
 }

 .service-list li:before {
     content: '✓';
     color: var(--primary-light);
     margin-right: 0.8rem;
     font-weight: bold;
 }

 /* Why Choose Us Section */
 .why-choose {
     padding: 100px 0;
     background: var(--primary-dark);
     color: white;
 }

 .why-choose .section-title {
     color: white;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-top: 4rem;
 }

 .feature-item {
     text-align: center;
     padding: 2rem;
 }

 .feature-item i {
     font-size: 3rem;
     color: var(--primary-light);
     margin-bottom: 1rem;
 }

 .feature-item h4 {
     font-size: 1.3rem;
     margin-bottom: 1rem;
 }

 /* Contact Section */
 .contact {
     padding: 100px 0;
     background: var(--accent-gray);
 }

 .contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-bottom: 4rem;
 }

 .contact-item {
     text-align: center;
     padding: 2rem;
     background: var(--white);
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(30, 74, 82, 0.1);
 }

 .contact-item i {
     font-size: 2.5rem;
     color: var(--primary-light);
     margin-bottom: 1rem;
 }

 .contact-item h4 {
     color: var(--primary-dark);
     margin-bottom: 0.5rem;
 }

 .contact-form {
     max-width: 600px;
     margin: 0 auto;
     background: var(--white);
     padding: 3rem;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(30, 74, 82, 0.1);
 }

 .form-group {
     margin-bottom: 2rem;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 15px;
     border: 2px solid var(--accent-gray);
     border-radius: 10px;
     font-family: 'Poppins', sans-serif;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--primary-light);
 }

 .submit-btn {
     width: 100%;
     padding: 15px;
     background: var(--primary-light);
     color: var(--primary-dark);
     border: none;
     border-radius: 10px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .submit-btn:hover {
     background: var(--secondary-green);
     color: white;
 }

 /* Footer */
 .footer {
     background: var(--primary-dark);
     color: white;
     text-align: center;
     padding: 3rem 0;
 }

 .social-links {
     margin-top: 2rem;
 }

 .social-links a {
     color: white;
     font-size: 1.8rem;
     margin: 0 1rem;
     transition: color 0.3s ease;
 }

 .social-links a:hover {
     color: var(--primary-light);
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .hamburger {
         display: flex;
     }

     .nav-menu {
         position: fixed;
         left: -100%;
         top: 70px;
         flex-direction: column;
         background-color: white;
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
         padding: 2rem 0;
     }

     .nav-menu.active {
         left: 0;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero p {
         font-size: 1.1rem;
     }

     .section-title {
         font-size: 2.2rem;
     }

     .about-grid,
     .portfolio-grid,
     .services-grid {
         grid-template-columns: 1fr;
     }

     .features-grid,
     .contact-grid {
         grid-template-columns: 1fr;
     }
 }












 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     /* Muestra 4 columnas */
     gap: 2.5rem;
     margin-top: 4rem;
 }

 @media (max-width: 1200px) {
     .portfolio-grid {
         grid-template-columns: repeat(2, 1fr);
         /* 2 columnas en pantallas medianas */
     }
 }

 @media (max-width: 768px) {
     .portfolio-grid {
         grid-template-columns: 1fr;
         /* 1 columna en móviles */
     }
 }


 .portfolio-item {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     height: 300px;
     /* Altura un poco menor para mejor proporción */
     cursor: pointer;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 .container {
     max-width: 1400px;
     /* Aumenta el ancho máximo */
     margin: 0 auto;
     padding: 0 2rem;
 }

 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(4, minmax(250px, 1fr));
     gap: 1.5rem;
     /* Espacio un poco menor */
     margin-top: 4rem;
 }






 .features-grid {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     /* Muestra 6 columnas en una línea */
     gap: 1rem;
     /* Espaciado reducido para que quepan */
     margin-top: 4rem;
 }

 /* Ajustes responsivos */
 @media (max-width: 1200px) {
     .features-grid {
         grid-template-columns: repeat(3, 1fr);
         /* 3 columnas en pantallas medianas */
     }
 }

 @media (max-width: 768px) {
     .features-grid {
         grid-template-columns: 1fr;
         /* 1 columna en móviles */
     }
 }




 .feature-item {
     text-align: center;
     padding: 1.5rem;
     /* Menor padding para optimizar espacio */
     background: rgba(255, 255, 255, 0.1);
     /* Fondo semitransparente */
     border-radius: 12px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .feature-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
     background: rgba(255, 255, 255, 0.15);
 }




 .container {
     max-width: 1400px;
     /* Aumenta el ancho máximo para 6 cards */
     margin: 0 auto;
     padding: 0 2rem;
 }


 /* Estilos para el logo con imagen */
 .logo {
     height: 50px;
     /* Altura fija para el contenedor */
     display: flex;
     align-items: center;
 }

 .logo-img {
     height: 100%;
     /* La imagen ocupará toda la altura del contenedor */
     width: auto;
     /* Ancho automático para mantener proporción */
     max-width: 150px;
     /* Ancho máximo (ajusta según necesites) */
     object-fit: contain;
     /* Mantiene la proporción de la imagen */
     transition: all 0.3s ease;
 }

 /* Opcional: Efecto hover suave */
 .logo-img:hover {
     opacity: 0.9;
     transform: scale(1.03);
 }

 /* Ajuste para móviles */
 @media (max-width: 768px) {
     .logo-img {
         max-width: 120px;
         /* Logo un poco más pequeño en móviles */
     }
 }


 /* Estilos para el logo en footer */
 .footer-logo {
     margin-bottom: 1rem;
     text-align: center;
 }

 .footer-logo-img {
     max-width: 180px;
     /* Ajusta este valor según necesites */
     height: auto;
     transition: all 0.3s ease;
 }

 /* Efecto hover opcional */
 .footer-logo-img:hover {
     opacity: 0.9;
     transform: scale(1.03);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .footer-logo-img {
         max-width: 150px;
         /* Más pequeño en móviles */
     }
 }