/* Integración de la fuente Montserrat con varias variaciones */
@font-face {
    font-family: 'Montserrat';
    src: url('webfonts/Montserrat-Regular.woff2') format('woff2'),
         url('webfonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('webfonts/Montserrat-Bold.woff2') format('woff2'),
         url('webfonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #E8388C;
}

.logo-img {
    width: 160px;
    height: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: auto;
    background-color: #E8388C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    animation: color-transition 20s infinite linear;
    overflow: hidden;
}

@keyframes color-transition {
    0% { background-color: #E8388C; }
    25% { background-color: #FDBB2C; }
    50% { background-color: #147876; }
    75% { background-color: #0F5B50; }
    100% { background-color: #E8388C; }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1.3);
}

.cta-button {
    background-color: #147876;
    border-radius: 30px;
    padding: 12px 25px;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    z-index: 3;
    position: relative;
}

.cta-button:hover {
    background-color: #0F5B50;
    transform: scale(1.05);
}

.rotating-image {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%) rotate(0deg);
    opacity: 0.05;
    z-index: 1;
    animation: rotate 30s infinite linear;
}

@keyframes rotate {
    0% {
        transform: translateX(-50%) translateY(50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(50%) rotate(360deg);
    }
}

.intro-section {
    padding: 40px 0;
    background-color: #fff;
}

.intro-section h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #147876;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 0;
    font-style: italic;
}

/* Pain Points Section */
.pain-section {
    padding: 60px 0;
    background-color: #fff;
}

.pain-section h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #147876;
    letter-spacing: 0.5px;
}

.pain-section h3 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bullet-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.bullet-point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-align: left;
    width: 100%;
}

.bullet-point i {
    color: #E8388C;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Our Key Services Section */
.services-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f9f9f9;
}

.services-section h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #147876;
    letter-spacing: 0.5px;
}

.services-section h3 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background-color: #f9f9f9;
    color: #333;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-card:hover {
    background-color: #e6f7f5;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #147876;
    background-color: #e0f7f4;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover i {
    color: #fff;
    background-color: #147876;
}

.service-card h4 {
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    color: #147876;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.service-price {
    display: inline-block;
    background-color: #FDBB2C;
    color: #333;
    font-size: 1em;
    font-weight: 600;
    font-style: italic;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(253, 187, 44, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    background-color: #FFD700;
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(253, 187, 44, 0.4);
}

.service-card p {
    font-size: 0.9em;
    color: #555;
    text-align: center;
    line-height: 1.4;
}

/* Features Grid (keeping original for compatibility) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: #f9f9f9;
    color: #333;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

.feature-card:hover {
    background-color: #e6f7f5;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #147876;
    background-color: #e0f7f4;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    color: #fff;
    background-color: #147876;
}

.feature-card span {
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    color: #147876;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.9em;
    color: #555;
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
    font-style: italic;
}

/* Process Section */
.process-section {
    background-color: #fff;
    padding: 50px 0;
}

.process-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.step {
    background-color: #FDBB2C;
    padding: 20px;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.step i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #147876;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* CTA Section with Form */
.cta-section {
    background-color: #147876;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-section h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    background-color: #FDBB2C;
    color: #333;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.submit-button:hover {
    background-color: #FFD700;
    transform: scale(1.02);
}

/* Contact Section (keeping for backward compatibility) */
.contact-section {
    background-color: #147876;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-section .cta-button {
    background-color: #FDBB2C;
    color: #333;
    transition: all 0.3s ease;
}

.contact-section .cta-button:hover {
    background-color: #FFD700;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.partners-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #147876;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-badge {
    height: 170px;
    width: auto;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.partner-badge:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Responsive adjustments for partners section */
@media (max-width: 768px) {
    .badges-container {
        gap: 20px;
    }
    
    .partner-badge {
        height: 160px;
    }
    
    .partners-section h3 {
        font-size: 1.2rem;
    }
    
    .service-price {
        font-size: 0.9em;
        padding: 5px 10px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid, .services-grid, .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid, .services-grid, .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .rotating-image {
        width: 160%;
    }
}

/* Estilo especial para el CTA principal que contrasta con todos los colores de fondo */
.hero-cta {
    background-color: #fff;
    color: #E8388C;
    border: 2px solid #fff;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #147876;
    transform: scale(1.05);
}

/* Mejora de los estilos para los bullet points */
.bullet-point {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bullet-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bullet-point i {
    color: #E8388C;
    margin-right: 15px;
    font-size: 1.5rem;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-point span {
    font-weight: 500;
    color: #333;
}

/* Estilos para el formulario temporal */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.submit-button {
    background-color: #FDBB2C;
    color: #333;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: #FFD700;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}