<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
* FormaciÃ³n Contable - Main Stylesheet
* Colors: 
* - Primary (Lavender): #7F6EDB
* - Accent 1 (Mandarin): #FF914D
* - Accent 2 (Yellow): #FCD12A
* - Text Light: #FDFDFD
* - Text Dark: #3A3A3A
*/

/* Reset &amp; Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #3A3A3A;
    background-color: #FDFDFD;
}

a {
    color: #7F6EDB;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF914D;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #3A3A3A;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 1.4rem;
}

.btn-primary {
    background: linear-gradient(135deg, #7F6EDB, #FF914D);
    color: #FDFDFD;
    box-shadow: 0 4px 6px rgba(127, 110, 219, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6F5ECB, #EF814D);
    color: #FDFDFD;
    box-shadow: 0 6px 8px rgba(127, 110, 219, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #FF914D, #FCD12A);
    color: #3A3A3A;
    box-shadow: 0 4px 6px rgba(255, 145, 77, 0.25);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #EF814D, #ECC11A);
    box-shadow: 0 6px 8px rgba(255, 145, 77, 0.3);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    border-radius: 0.4rem;
}

.btn-cookie {
    background-color: #7F6EDB;
    color: #FDFDFD;
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    border-radius: 0.4rem;
}

.btn-cookie:hover {
    background-color: #6F5ECB;
    color: #FDFDFD;
}

.btn-header {
    color: #FDFDFD;
    background-color: #FF914D;
    padding: 0.8rem 1.6rem;
    border-radius: 0.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background-color: #FCD12A;
    color: #3A3A3A;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background-color: #FDFDFD;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo img {
    height: 5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav li {
    margin-left: 2.5rem;
}

.main-nav a {
    color: #3A3A3A;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FF914D;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #FF914D;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 2.5rem;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #3A3A3A;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(58, 58, 58, 0.95);
    color: #FDFDFD;
    padding: 1.5rem 0;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-content p {
    margin: 0 2rem 0 0;
    font-size: 1.4rem;
}

.cookie-form {
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7F6EDB, #6F5ECB);
    color: #FDFDFD;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.hero h1, 
.hero p {
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FDFDFD;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: #FDFDFD;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    border-radius: 0.8rem;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit img {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
}

.benefit h3 {
    margin-bottom: 1.5rem;
    color: #7F6EDB;
}

/* Courses Section */
.courses {
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.course-card {
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.course-card.featured {
    border: 2px solid #FF914D;
    transform: scale(1.05);
}

.course-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.course-card h3 {
    color: #7F6EDB;
    margin-bottom: 1rem;
}

.course-card .price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #FF914D;
    margin-bottom: 2rem;
}

.course-card ul {
    text-align: left;
    margin-bottom: 2.5rem;
    list-style-type: none;
}

.course-card li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.course-card li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: #7F6EDB;
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    padding: 8rem 0;
    background-color: #FDFDFD;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.advantage {
    padding: 2rem;
    border-radius: 0.8rem;
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.advantage-img {
    height: 200px;
    overflow: hidden;
    border-radius: 0.6rem;
    margin: -2rem -2rem 2rem -2rem;
}

.advantage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.advantage:hover .advantage-img img {
    transform: scale(1.05);
}

.advantage h3 {
    color: #FF914D;
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: #7F6EDB;
    color: #FDFDFD;
}

.testimonials h2 {
    color: #FDFDFD;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial {
    background-color: rgba(253, 253, 253, 0.1);
    border-radius: 0.8rem;
    padding: 3rem;
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item {
    background-color: #fff;
    border-radius: 0.8rem;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #FF914D;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Registration Form Section */
.registration-form {
    padding: 8rem 0;
    background: linear-gradient(135deg, #7F6EDB, #6F5ECB);
    color: #FDFDFD;
}

.registration-form h2 {
    color: #FDFDFD;
    text-align: center;
}

.custom-form {
    max-width: 800px;
    margin: 4rem auto 0;
    background-color: rgba(253, 253, 253, 0.1);
    padding: 4rem;
    border-radius: 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.custom-form::before,
.custom-form::after {
    content: '';
    position: absolute;
    background-color: #FF914D;
    z-index: -1;
}

.custom-form::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: -25px;
    transform: rotate(45deg);
}

.custom-form::after {
    width: 50px;
    height: 50px;
    bottom: -25px;
    right: -25px;
    transform: rotate(45deg);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(253, 253, 253, 0.3);
    border-radius: 0.4rem;
    background-color: rgba(253, 253, 253, 0.1);
    color: #FDFDFD;
    font-family: 'Poppins', sans-serif;
}

.form-group input::placeholder {
    color: rgba(253, 253, 253, 0.7);
}

.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(253, 253, 253, 0.3);
    border-radius: 0.4rem;
    background-color: rgba(253, 253, 253, 0.2);
    color: #FDFDFD;
    font-family: 'Poppins', sans-serif;
}

.form-group select option {
    background-color: #7F6EDB;
    color: #FDFDFD;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 1rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group label a {
    color: #FCD12A;
    text-decoration: underline;
    font-weight: 500;
}

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

.custom-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background-color: #3A3A3A;
    color: #FDFDFD;
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    height: 5rem;
    margin-bottom: 2rem;
}

.footer-description {
    font-size: 1.4rem;
    opacity: 0.8;
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-contact .icon {
    margin-right: 1rem;
}

.footer-links a {
    color: #FDFDFD;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FCD12A;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 253, 253, 0.1);
    font-size: 1.4rem;
    opacity: 0.6;
}

/* Thank You Page */
.thankyou-section {
    padding: 10rem 0;
    text-align: center;
    background: linear-gradient(135deg, #7F6EDB, #6F5ECB);
    color: #FDFDFD;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-content h1 {
    color: #FDFDFD;
    margin-bottom: 3rem;
    font-size: 3.6rem;
}

.thankyou-content p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8rem;
}

.button-group {
    margin-top: 4rem;
}

.button-group .btn {
    margin: 0 1rem;
}

/* Legal Pages */
.legal-section {
    padding: 6rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 3rem;
    text-align: center;
}

.legal-content h2 {
    color: #7F6EDB;
    margin-top: 4rem;
    font-size: 2.4rem;
}

.legal-content h3 {
    color: #FF914D;
    margin-top: 2.5rem;
    font-size: 2rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .course-card.featured {
        transform: scale(1);
    }
    
    .course-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 7.5rem;
        left: 0;
        width: 100%;
        background-color: #FDFDFD;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.8rem;
    }
    
    .custom-form {
        padding: 3rem 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin: 0 0 1.5rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .button-group .btn {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .site-footer {
        padding: 4rem 0 2rem;
    }
} </pre></body></html>