/* General Styles */
:root {
    --primary-color: #ff9900;
    --secondary-color: #232f3e;
    --accent-color: #0066c0;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #555;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.separator {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto 40px;
}

.separator.small {
    width: 50px;
    margin: 15px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu li {
    margin-left: 20px;
}

.main-menu a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 3px;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.main-menu a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    background-image: linear-gradient(rgba(35, 47, 62, 0.9), rgba(35, 47, 62, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.services h2 {
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Target Audience Section */
.target-audience {
    background-color: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.target-audience h2 {
    font-size: 2.5rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.audience-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.audience-card h3 {
    font-size: 1.3rem;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.comparison h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.comparison-table {
    max-width: 100%;
    overflow-x: auto;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
}

.company-cell {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #ddd;
}

.comparison-row.highlight {
    background-color: rgba(255, 153, 0, 0.1);
    font-weight: 700;
}

.feature {
    padding: 15px;
    text-align: left;
    border-right: 1px solid #ddd;
}

.has-feature {
    padding: 15px;
    text-align: center;
    border-right: 1px solid #ddd;
}

.has-feature.yes {
    color: green;
}

.has-feature.no {
    color: red;
}

/* Work Process Section */
.work-process {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.work-process h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.step h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step ul {
    list-style: none;
    text-align: left;
}

.step ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.step ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.reminder {
    margin-top: 50px;
}

.reminder h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.footer-message p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    opacity: 0.8;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .comparison-header, .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        width: 100%;
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services h2, .target-audience h2, .comparison h2, .work-process h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
}

/* Sección de Contacto Optimizada */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

/* Encabezado de la sección */
.contact-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-section .section-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Contenedor flexible para información y formulario */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Columna de información de contacto */
.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #131921 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Métodos de contacto */
.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.method-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: 1.2rem;
    transition: var(--transition);
}

.contact-method:hover .method-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.method-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.method-details p, 
.method-details a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.method-details a:hover {
    color: var(--primary-color);
}

/* Imagen decorativa */
.contact-image {
    margin-top: auto;
}

.contact-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contenedor del formulario */
.contact-form-container {
    flex: 1.5;
    min-width: 300px;
    padding: 40px;
    background-color: var(--white);
}

/* Encabezado del formulario */
.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-color);
}

.form-row {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--input-border);
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--input-focus);
}

.form-policy {
    margin-bottom: 20px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-wrapper label {
    color: var(--text-color);
}

.checkbox-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-submit {
    text-align: right;
}

.submit-button {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.form-disclaimer {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
} 
/* Estilos para el formulario de newsletter en el footer */
.footer-newsletter {
    max-width: 500px;
    margin-bottom: 30px;
}

.footer-newsletter h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-form .form-field {
    display: flex;
    margin-bottom: 10px;
}

.footer-form .form-field input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer-form .form-field input:focus {
    outline: none;
    background-color: #fff;
}

.footer-form .newsletter-button {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-form .newsletter-button:hover {
    background-color: #ffaa33;
}

.footer-form .newsletter-button i {
    transition: transform 0.3s ease;
}

.footer-form .newsletter-button:hover i {
    transform: translateX(3px);
}

.footer-form .policy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-form .policy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.footer-form .policy label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

/* Ajustes para el layout del footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-message {
    max-width: 400px;
}

.footer-message p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    
    .footer-newsletter,
    .footer-message {
        width: 100%;
        margin-bottom: 20px;
    }
}