/* 
 * Estilos para el sitio web de auditoría financiera
 * Colores: 
 * - Fondo: #003B73 (cobaltovo azul)
 * - Acentos: #FFD447 (limón amarillo), #00A878 (nefrito verde)
 * - Texto: #F5F5F5 (blanco cálido)
 * - Botones: gradiente de #FF6F61 a #FFD447
 */

/* === ESTILOS GENERALES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #003B73;
    color: #F5F5F5;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF6F61, #FFD447);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: #FFD447;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFEF9F;
}

section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === BOTONES === */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #FF6F61, #FFD447);
    color: #003B73;
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(255, 212, 71, 0.4);
    transform: translateY(-2px);
    color: #003B73;
}

.btn-secondary {
    background-color: transparent;
    color: #FFD447;
    border: 2px solid #FFD447;
}

.btn-secondary:hover {
    background-color: rgba(255, 212, 71, 0.1);
    box-shadow: 0 5px 15px rgba(255, 212, 71, 0.2);
    color: #FFD447;
}

.btn-cookie {
    background-color: #00A878;
    color: #F5F5F5;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #007A57;
}

/* === ICONOS === */
.icon-certificate::before,
.icon-experience::before,
.icon-customize::before,
.icon-confidential::before,
.icon-phone::before,
.icon-email::before,
.icon-location::before,
.icon-check::before {
    font-family: 'FontAwesome';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FFD447;
}

.icon-certificate::before { content: '\f0a3'; }
.icon-experience::before { content: '\f091'; }
.icon-customize::before { content: '\f013'; }
.icon-confidential::before { content: '\f023'; }
.icon-phone::before { content: '\f095'; }
.icon-email::before { content: '\f0e0'; }
.icon-location::before { content: '\f041'; }
.icon-check::before { content: '\f00c'; }

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 59, 115, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #F5F5F5;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD447;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(to right, #FF6F61, #FFD447);
    color: #003B73 !important;
    padding: 8px 16px !important;
    border-radius: 20px;
}

.nav-cta:hover::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #F5F5F5;
    margin: 3px 0;
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 59, 115, 0.95);
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 15px 0;
    text-align: center;
}

.mobile-menu a {
    color: #F5F5F5;
    font-weight: 600;
    font-size: 1.2rem;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 59, 115, 0.95);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* === HERO SECTION === */
.hero {
    padding-top: 130px;
    padding-bottom: 50px;
    background: linear-gradient(to bottom right, #003B73, #002855);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* === ABOUT SECTION === */
.about {
    background-color: #002855;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* === BENEFITS SECTION === */
.benefits {
    background-color: #003B73;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    margin-bottom: 20px;
}

/* === SERVICES SECTION === */
.services {
    background-color: #002855;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 20px;
}

.service-card h3 {
    margin-top: 20px;
}

.service-price {
    padding: 0 20px;
    margin: 20px 0;
    display: flex;
    align-items: baseline;
}

.service-price span {
    font-size: 0.9rem;
    margin-right: 5px;
    color: #FFD447;
}

.service-price p {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0;
}

.service-card .btn-secondary {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background-color: #003B73;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    max-width: 350px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author .name {
    font-weight: 700;
    color: #FFD447;
    margin-bottom: 5px;
}

.testimonial-author .company {
    font-size: 0.9rem;
}

/* === PROCESS SECTION === */
.process {
    background-color: #002855;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #FF6F61, #FFD447);
    color: #003B73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* === CONTACT SECTION === */
.contact {
    background-color: #003B73;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding-right: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 10px;
    color: #FFD447;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #000000;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD447;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

/* === THANKS SECTION === */
.thanks-section {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 4rem;
    color: #00A878;
    margin: 30px 0;
}

/* === LEGAL SECTION === */
.legal-section {
    padding: 120px 0 80px;
}

.legal-section h1 {
    text-align: center;
    margin-bottom: 40px;
}

.legal-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.legal-content h2 {
    text-align: left;
    margin-top: 40px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h2::after {
    margin: 15px 0 0;
}

.legal-content h3 {
    margin-top: 30px;
    color: #FFD447;
}

.legal-content ul, .legal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-footer {
    text-align: center;
    font-size: 0.9rem;
}

/* === FOOTER === */
.site-footer {
    background-color: #002855;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: #FFD447;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-links ul,
.footer-legal ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-contact li {
    margin-bottom: 15px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.footer-contact .contact-icon {
    color: #FFD447;
    font-size: 1.2rem;
    margin-right: 10px;
    min-width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column-reverse;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .benefit-card {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
} 