/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilidades */
.highlight {
    color: #19575f;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #ef7a13, #d96a0f);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 122, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 122, 19, 0.4);
    background: linear-gradient(135deg, #d96a0f, #c55e0d);
}

.btn-secondary {
    background: white;
    color: #0f3e44;
    border: 2px solid #0f3e44;
}

.btn-secondary:hover {
    background: #0f3e44;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ef7a13;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f3e44, #1a5a62);
    color: white;
    padding: 100px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(239, 122, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgb(10 43 47);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-badge i {
    color: #1f2937;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
}
.hero-title .highlight{
    color: #ef7a13;
	font-size: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.benefit-item i {
    color: #ef7a13;
    font-size: 1.1rem;
    width: 20px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.text-separator{
	text-align: center;
	margin: .4rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    color: #ef7a13;
    font-size: 1rem;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.audit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.audit-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f3e44;
    margin-bottom: 1rem;
    text-align: center;
}

.audit-price {
    text-align: center;
    margin-bottom: 1rem;
}

.audit-price .original-price {
    font-size: 1.2rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.audit-price .discounted-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ef7a13;
}

.audit-features h3 {
	margin-bottom: 1rem;
}

.audit-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f3e44;
    margin-bottom: 1rem;
}

.audit-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.audit-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.audit-features li i {
    color: #ef7a13;
    font-size: 0.9rem;
    width: 16px;
}

.audit-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audit-cta .btn {
    justify-content: center;
}

/* Secciones generales */
section {
    padding: 80px 0;
}

.directive-info {
    background: #f9fafb;
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f3e44, #1a5a62);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Requisitos de la norma */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.requirement-item {
    text-align: center;
    padding: 1.5rem;
}

.requirement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f3e44, #1a5a62);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.requirement-icon i {
    font-size: 2rem;
    color: white;
}

.requirement-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.requirement-item p {
    color: #6b7280;
}

.scope-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scope-section h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.scope-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.scope-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 8px;
}

.scope-item i {
    color: #ef7a13;
    font-size: 1.2rem;
}

.scope-item span {
    font-weight: 500;
    color: #374151;
	line-height: 1.4;
}

/* Quién debe cumplir */
.who-must-comply {
    background: #f9fafb;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.compliance-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
}

.compliance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0f3e44, #1a5a62);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.compliance-icon i {
    font-size: 1.8rem;
    color: white;
}

.compliance-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.compliance-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Cumplimiento legal */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.legal-card {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legal-card.warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid #f59e0b;
}

.legal-card.danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-left: 4px solid #ef4444;
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.legal-card.warning .legal-icon i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.legal-card.danger .legal-icon i {
    color: #ef4444;
    font-size: 1.5rem;
}

.legal-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-card p {
    color: #374151;
    line-height: 1.6;
}

.legal-card ul {
    list-style: none;
    padding: 0;
}

.legal-card li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.legal-card li::before {
    content: "•";
    color: #ef4444;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Auditorías */
.audit-initial {
    background: #f9fafb;
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.audit-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.audit-features {
    list-style: none;
    margin-bottom: 2rem;
}

.audit-features li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    padding: 0.2rem 0;
    color: #374151;
}

.audit-features i {
    color: #ef7a13;
    font-size: 1rem;
    margin-top: 6px;
}

.pricing {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-item {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-item.large {
    max-width: 400px;
}

.price-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.discounted-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #19575f;
}

.main-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.discount {
    background: #19575f;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.special-offer {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #19575f;
    margin-top: 1rem;
}

.special-offer h5 {
    color: #19575f;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.special-offer p {
    font-size: 0.9rem;
    color: #374151;
    margin-top: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Formularios */
.audit-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.audit-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ef7a13;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-fk{
	display:none;
}

/* Por qué elegirnos */
.why-choose-us {
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f3e44, #1a5a62);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Final */
.final-cta {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ef7a13;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ef7a13;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 986px) {
	.compliance-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
	
@media (max-width: 768px) {
	
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
		line-height: 1.2;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .audit-card {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .audit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing {
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
	
	.compliance-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.features-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.legal-grid {
		grid-template-columns: repeat(1, 1fr);
	}
    
    .nav {
        display: none;
    }
	.cta-content h2{
		font-size: 1.4rem
	}
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
		line-height: 1.4;
        text-align: left;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

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

.card,
.compliance-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}



.form-group.checkbox-group {
    display: flex;
    align-items: center;
	flex-direction: row;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-group.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    cursor: pointer;
}

.form-group.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    cursor: pointer;
}

.form-group.checkbox-group label a {
    color: #0f3e44;
    text-decoration: underline;
}

.form-group.checkbox-group label a:hover {
    color: #ef7a13;
}

