:root {
    --blanco: #ffffff;
    --verde: #2b7778;
    --naranja: #f97332; /* Cambiado a #f97332 */
    --crema: #f9f6ed;
    --amarillo: #fcc847;
    --gris-oscuro: #333333;
    --gris-claro: #f5f5f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--crema);
            color: var(--gris-oscuro);
            overflow-x: hidden;
        }

        /* Header */
        header {
            background-color: var(--blanco);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.95);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .logo h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--verde);
        }

        .logo span {
            color: var(--naranja);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--gris-oscuro);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--naranja);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--naranja);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--verde);
            cursor: pointer;
        }

        .cta-button {
            background-color: var(--naranja);
            color: var(--blanco);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(249, 115, 50, 0.3); /* Ajustado al nuevo color */
        }

        .cta-button:hover {
            background-color: var(--verde);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(43, 119, 120, 0.4);
        }

        /* Hero Section - Imagen de fondo cambiada */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(43, 119, 120, 0.9) 0%, rgba(249, 115, 50, 0.8) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: var(--blanco);
            padding-top: 80px;
        }

        .hero-content {
            max-width: 600px;
            animation: fadeInUp 1s ease;
        }

        .hero h2 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .secondary-button {
            background-color: transparent;
            color: var(--blanco);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: all 0.3s;
            border: 2px solid var(--blanco);
            cursor: pointer;
        }

        .secondary-button:hover {
            background-color: var(--blanco);
            color: var(--verde);
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background-color: var(--blanco);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 30px;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-item:nth-child(1) {
            background-color: rgba(43, 119, 120, 0.1);
            border-top: 4px solid var(--verde);
        }

        .stat-item:nth-child(2) {
            background-color: rgba(248, 114, 73, 0.1);
            border-top: 4px solid var(--naranja);
        }

        .stat-item:nth-child(3) {
            background-color: rgba(252, 200, 71, 0.1);
            border-top: 4px solid var(--amarillo);
        }

        .stat-item:nth-child(4) {
            background-color: rgba(43, 119, 120, 0.1);
            border-top: 4px solid var(--verde);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--verde);
        }

        .stat-item:nth-child(2) .stat-number {
            color: var(--naranja);
        }

        .stat-item:nth-child(3) .stat-number {
            color: var(--amarillo);
        }

        .stat-text {
            font-size: 18px;
            color: var(--gris-oscuro);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--crema);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--verde);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--naranja);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--gris-oscuro);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            opacity: 0.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--blanco);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--naranja);
            z-index: 2;
        }

        .service-card:nth-child(2)::before {
            background-color: var(--verde);
        }

        .service-card:nth-child(3)::before {
            background-color: var(--amarillo);
        }

        .service-card:nth-child(4)::before {
            background-color: var(--verde);
        }

        .service-card:nth-child(5)::before {
            background-color: var(--naranja);
        }

        .service-card:nth-child(6)::before {
            background-color: var(--amarillo);
        }

        .service-icon {
            height: 80px;
            width: 80px;
            background-color: var(--crema);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 20px;
            font-size: 30px;
            color: var(--naranja);
        }

        .service-card:nth-child(2) .service-icon {
            color: var(--verde);
        }

        .service-card:nth-child(3) .service-icon {
            color: var(--amarillo);
        }

        .service-card:nth-child(4) .service-icon {
            color: var(--verde);
        }

        .service-card:nth-child(5) .service-icon {
            color: var(--naranja);
        }

        .service-card:nth-child(6) .service-icon {
            color: var(--amarillo);
        }

        .service-content {
            padding: 0 30px 30px;
            text-align: center;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--gris-oscuro);
        }

        .service-content p {
            color: var(--gris-oscuro);
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-link {
            color: var(--naranja);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s;
        }

        .service-link:hover {
            color: var(--verde);
        }

        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--blanco);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 500px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid var(--naranja);
            border-radius: 5px;
            z-index: 1;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .about-image:hover::before {
            opacity: 1;
        }

        .about-content h2 {
            font-size: 36px;
            color: var(--verde);
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--gris-oscuro);
        }

        .about-features {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(248, 114, 73, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--naranja);
            font-size: 20px;
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--gris-oscuro);
        }

        .feature-content p {
            margin-bottom: 0;
            font-size: 15px;
            opacity: 0.9;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 100px 0;
            background-color: var(--crema);
        }

        .portfolio-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-button {
            background: none;
            border: none;
            padding: 8px 20px;
            margin: 5px 10px;
            font-size: 16px;
            color: var(--gris-oscuro);
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 30px;
        }

        .filter-button.active, .filter-button:hover {
            background-color: var(--naranja);
            color: var(--blanco);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 250px;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(43, 119, 120, 0.8) 0%, rgba(248, 114, 73, 0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
            padding: 20px;
            text-align: center;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h3 {
            color: var(--blanco);
            font-size: 22px;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: transform 0.3s;
        }

        .portfolio-overlay p {
            color: var(--blanco);
            margin-bottom: 20px;
            transform: translateY(20px);
            transition: transform 0.3s 0.1s;
        }

        .portfolio-overlay a {
            color: var(--blanco);
            background-color: var(--naranja);
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transform: translateY(20px);
            transition: all 0.3s 0.2s;
        }

        .portfolio-item:hover .portfolio-overlay h3,
        .portfolio-item:hover .portfolio-overlay p,
        .portfolio-item:hover .portfolio-overlay a {
            transform: translateY(0);
        }

        .portfolio-overlay a:hover {
            background-color: var(--blanco);
            color: var(--naranja);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--blanco);
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-item {
            background-color: var(--crema);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 0 15px;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--naranja);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            color: var(--gris-oscuro);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--verde);
            margin-bottom: 5px;
        }

        .testimonial-position {
            color: var(--naranja);
            font-size: 14px;
        }

        .slick-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            list-style: none;
        }

        .slick-dots li {
            margin: 0 5px;
        }

        .slick-dots button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            border: none;
            font-size: 0;
            padding: 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slick-dots button:hover, .slick-dots .slick-active button {
            background-color: var(--naranja);
        }

        /* Team Section */
        .team {
            padding: 100px 0;
            background-color: var(--crema);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-member {
            background-color: var(--blanco);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .team-member-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .team-member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .team-member:hover .team-member-image img {
            transform: scale(1.1);
        }

        .team-member-social {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(43, 119, 120, 0.8);
            padding: 15px 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .team-member:hover .team-member-social {
            transform: translateY(0);
        }

        .team-member-social a {
            color: var(--blanco);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .team-member-social a:hover {
            background-color: var(--naranja);
            transform: translateY(-3px);
        }

        .team-member-info {
            padding: 25px 20px;
        }

        .team-member-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--gris-oscuro);
        }

        .team-member-info p {
            color: var(--naranja);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .team-member-info .team-member-bio {
            color: var(--gris-oscuro);
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background-color: var(--blanco);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background-color: var(--crema);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .pricing-card.popular {
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.popular::before {
            content: 'Popular';
            position: absolute;
            top: 20px;
            right: -30px;
            background-color: var(--amarillo);
            color: var(--gris-oscuro);
            padding: 5px 30px;
            font-weight: 600;
            transform: rotate(45deg);
            font-size: 14px;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-header {
            padding: 30px;
            text-align: center;
            background-color: var(--verde);
            color: var(--blanco);
        }

        .pricing-card:nth-child(2) .pricing-header {
            background-color: var(--naranja);
        }

        .pricing-card:nth-child(3) .pricing-header {
            background-color: var(--amarillo);
            color: var(--gris-oscuro);
        }

        .pricing-title {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .pricing-period {
            font-size: 14px;
            opacity: 0.8;
        }

        .pricing-features {
            padding: 30px;
        }

        .pricing-features ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .pricing-features ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }

        .pricing-features ul li i {
            margin-right: 10px;
            color: var(--naranja);
        }

        .pricing-features ul li.disabled {
            opacity: 0.5;
        }

        .pricing-footer {
            padding: 0 30px 30px;
            text-align: center;
        }

        /* Blog Section */
        .blog {
            padding: 100px 0;
            background-color: var(--crema);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .blog-post {
            background-color: var(--blanco);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .blog-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .blog-post-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-post:hover .blog-post-image img {
            transform: scale(1.1);
        }

        .blog-post-content {
            padding: 25px;
        }

        .blog-post-meta {
            display: flex;
            margin-bottom: 15px;
            font-size: 14px;
            color: var(--naranja);
        }

        .blog-post-meta span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }

        .blog-post-meta i {
            margin-right: 5px;
        }

        .blog-post-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--gris-oscuro);
        }

        .blog-post-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .blog-post-title a:hover {
            color: var(--naranja);
        }

        .blog-post-excerpt {
            color: var(--gris-oscuro);
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .blog-post-link {
            color: var(--naranja);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s;
        }

        .blog-post-link:hover {
            color: var(--verde);
        }

        .blog-post-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .blog-post-link:hover i {
            transform: translateX(5px);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--blanco);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info {
            background-color: var(--verde);
            padding: 40px;
            border-radius: 10px;
            color: var(--blanco);
        }

        .contact-info h2 {
            font-size: 28px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--naranja);
            bottom: 0;
            left: 0;
        }

        .contact-info p {
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .contact-info-item {
            display: flex;
            margin-bottom: 20px;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-info-content h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .contact-info-content a {
            color: var(--blanco);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info-content a:hover {
            color: var(--amarillo);
        }

        .contact-social {
            display: flex;
            margin-top: 30px;
            gap: 15px;
        }

        .contact-social a {
            color: var(--blanco) !important;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .contact-social a:hover {
            background-color: var(--naranja);
            transform: translateY(-3px);
        }

        .contact-form {
            background-color: var(--crema);
            padding: 40px;
            border-radius: 10px;
        }

        .contact-form h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--verde);
            position: relative;
            padding-bottom: 15px;
        }

        .contact-form h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--naranja);
            bottom: 0;
            left: 0;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--blanco);
        }

        .form-control:focus {
            border-color: var(--naranja);
            box-shadow: 0 0 0 3px rgba(248, 114, 73, 0.2);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--naranja);
            color: var(--blanco);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
        }

        .submit-btn:hover {
            background-color: var(--verde);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(43, 119, 120, 0.3);
        }

        .submit-btn i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        /* Newsletter Section */
        .newsletter {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(43, 119, 120, 0.9) 0%, rgba(249, 115, 50, 0.8) 100%);
            color: var(--blanco);
            text-align: center;
        }

        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .newsletter h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .newsletter p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 16px;
        }

        .newsletter-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .newsletter-btn {
            background-color: var(--amarillo);
            color: var(--gris-oscuro);
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-btn:hover {
            background-color: var(--blanco);
        }

        /* Footer */
        footer {
            background-color: var(--gris-oscuro);
            color: var(--blanco);
            padding: 70px 0 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }

        .footer-logo h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--blanco);
        }

        .footer-logo span {
            color: var(--naranja);
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            color: var(--blanco) !important;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background-color: var(--naranja);
            transform: translateY(-3px);
        }

        .footer-links h3, .footer-services h3, .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after, .footer-services h3::after, .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--naranja);
            bottom: 0;
            left: 0;
        }

        .footer-links ul, .footer-services ul {
            list-style: none;
        }

        .footer-links li, .footer-services li {
            margin-bottom: 12px;
        }

        .footer-links a, .footer-services a {
            color: var(--blanco);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover, .footer-services a:hover {
            opacity: 1;
            color: var(--naranja);
            transform: translateX(5px);
        }

        .footer-links a i, .footer-services a i {
            margin-right: 8px;
            font-size: 12px;
        }

        .footer-contact-item {
            display: flex;
            margin-bottom: 15px;
        }

        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .footer-contact-text {
            opacity: 0.8;
            line-height: 1.5;
        }

        .footer-contact-text a {
            color: var(--blanco);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-contact-text a:hover {
            color: var(--naranja);
        }

        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            opacity: 0.8;
            font-size: 14px;
        }

        .footer-bottom p a {
            color: var(--naranja);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom p a:hover {
            color: var(--amarillo);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container, .contact-container {
                grid-template-columns: 1fr;
            }

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

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--blanco);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transition: all 0.3s;
                padding: 30px;
                z-index: 999;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 15px 0;
            }

            .hero h2 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                border-radius: 30px;
                margin-bottom: 15px;
            }

            .newsletter-btn {
                border-radius: 30px;
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .stats-container {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .hero h2 {
                font-size: 30px;
            }
        }