/* 
* Auditoría Financiera - CSS Styles
* Color Palette:
* - Background: #1f2235 (dark blue)
* - Accent: #00ffc3 (neon mint)
* - Headings: #ff6ec7 (fuchsia)
* - Buttons: gradient from #fcee09 to #ff6ec7
* - Text: #f5f5f5
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #1f2235;
    --bg-light: #2a2d45;
    --accent: #00ffc3;
    --heading: #ff6ec7;
    --text: #f5f5f5;
    --gradient-from: #fcee09;
    --gradient-to: #ff6ec7;
    --shadow: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 5px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--heading);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
    margin-bottom: 3rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-from), var(--gradient-to));
    border-radius: var(--border-radius);
}

h3 {
    font-size: 1.5rem;
    color: var(--accent);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--heading);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(31, 34, 53, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 2rem;
}

.nav ul li a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.nav ul li a:hover, .nav ul li a.active {
    color: var(--accent);
}

.nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav ul li a:hover:before, .nav ul li a.active:before {
    width: 100%;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gradient-from), var(--gradient-to));
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(255, 110, 199, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 110, 199, 0.6);
    color: var(--bg-color);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-color);
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(31, 34, 53, 0.95);
    z-index: 9999;
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cookie-content p {
    margin: 0;
    margin-right: 2rem;
}

.btn-cookie {
    background: var(--accent);
    color: var(--bg-color);
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-cookie:hover {
    background: var(--heading);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(31, 34, 53, 0.9), rgba(31, 34, 53, 0.8)), url('../img/ZqKFNm.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-color);
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

/* Process Section */
.process {
    padding: 100px 0;
    position: relative;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gradient-from), var(--gradient-to));
    color: var(--bg-color);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.5rem;
}

.process-step:not(:last-child):before {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--gradient-from), var(--gradient-to));
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-plan {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
    position: relative;
    overflow: hidden;
}

.pricing-plan.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent);
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-plan.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 1rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading);
}

.period {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.7;
    margin-left: 0.25rem;
}

.plan-features {
    padding: 2rem;
    list-style: none;
}

.plan-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.plan-features li.not-included {
    opacity: 0.5;
}

.plan-features li.not-included:before {
    content: '✕';
    color: var(--heading);
}

.pricing-plan .btn-primary,
.pricing-plan .btn-secondary {
    display: block;
    margin: 0 2rem 2rem;
}

.plan-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, var(--gradient-from), var(--gradient-to));
    color: var(--bg-color);
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.contact-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-icon {
    margin-right: 1rem;
    width: 24px;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-image {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-form {
    flex: 1;
}

/* Form Styles */
.form {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-light);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 255, 195, 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.form-checkbox input {
    margin-right: 10px;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-color);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 2;
    min-width: 250px;
}

.footer-logo p {
    margin-top: 1.5rem;
    opacity: 0.8;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--heading);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent);
    opacity: 1;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
}

.contact-info svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

/* Legal Pages */
.legal {
    padding: 180px 0 100px;
}

.legal h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-content {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.last-updated {
    color: var(--accent);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-content h2:after {
    left: 0;
    transform: none;
    width: 60px;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--heading);
    font-size: 1.3rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* Thanks Page */
.thanks {
    padding: 180px 0 100px;
    text-align: center;
}

.thanks-content {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks h1 {
    color: var(--accent);
    margin-bottom: 2rem;
}

.thanks p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thanks p.warning {
    color: #fcee09;
    background-color: rgba(252, 238, 9, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content, 
    .contact-container {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .pricing-plan {
        max-width: 100%;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.4s ease-out;
        z-index: 1000;
    }
    
    .nav.open {
        clip-path: circle(150% at 100% 0);
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav ul li {
        margin: 1rem 0;
        margin-left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-step:not(:last-child):before {
        left: 25px;
        top: 75px;
        height: calc(100% - 25px);
    }
    
    .thanks-buttons {
        flex-direction: column;
    }
} 