/* 
* Main Stylesheet
* Contabilidad Website Template
* Color Palette:
* - Primary: #FC6E51 (coral)
* - Secondary: #2ECC71 (mint green)
* - Dark: #1C1C1C (coal black)
* - White: #FFFFFF
* - Light Gray: #F7F9FA
*/

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1C1C1C;
    background-color: #F7F9FA;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FC6E51, #FFB88C);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #FC6E51;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2ECC71;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #FC6E51, #FFB88C);
    color: white;
    box-shadow: 0 4px 15px rgba(252, 110, 81, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #FFB88C, #FC6E51);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 110, 81, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: #FC6E51;
    border: 2px solid #FC6E51;
}

.btn-outline:hover {
    background: #FC6E51;
    color: white;
}

.btn-accept {
    background: #2ECC71;
    color: white;
}

.btn-accept:hover {
    background: #27ae60;
    color: white;
}

/* Header Styles */
.site-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.text-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #FC6E51;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 20px;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 10px 15px;
    color: #1C1C1C;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FC6E51, #FFB88C);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list a:hover::after,
.nav-list li.active a::after {
    width: 70%;
}

.nav-list a:hover,
.nav-list li.active a {
    color: #FC6E51;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
}

.menu-toggle {
    width: 30px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #FC6E51;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.8), rgba(28, 28, 28, 0.9)), url('./img/aaTaui.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s forwards;
    transform: translateY(20px);
    opacity: 0;
}

.hero-content .btn {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #F7F9FA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    margin-bottom: 20px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #FC6E51;
}

.service-card p {
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background-color: rgba(46, 204, 113, 0.2);
}

.testimonials-section {
    margin-top: 50px;
}

.testimonials-section h3 {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #F7F9FA;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: rgba(252, 110, 81, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #FC6E51;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #F7F9FA;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid #2ECC71;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2ECC71;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: #1C1C1C;
}

.price {
    margin-top: 15px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #FC6E51;
}

.price .period {
    font-size: 1rem;
    color: #777;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ECC71;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details li {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-details li svg {
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-image {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(to bottom right, #FFFFFF, #F7F9FA);
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient(135deg, #FC6E51, #2ECC71);
    border-radius: 12px;
    z-index: -1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FC6E51;
    box-shadow: 0 0 0 3px rgba(252, 110, 81, 0.2);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #F7F9FA;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(252, 110, 81, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    padding-right: 30px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FC6E51;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Footer Styles */
.site-footer {
    background-color: #1C1C1C;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FC6E51;
    display: inline-block;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li svg {
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-links a {
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FC6E51;
    padding-left: 5px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1C1C1C;
    color: #FFFFFF;
    padding: 15px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.cookie-content p {
    margin-right: 20px;
    margin-bottom: 0;
}

.cookie-content a {
    color: #2ECC71;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 100;
    }
    
    .main-navigation.open {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 0;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-banner {
        padding: 80px 0;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-container,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1, .hero-content h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .pricing-card,
    .contact-form-container {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
} 