:root {
    --primary: #0095F6;
    --primary-hover: #1877F2;
    --accent: #FF3040;
    --text-dark: #000000;
    --text-medium: #262626;
    --text-light: #737373;
    --white: #ffffff;
    --light-bg: #FAFAFA;
    --border-color: #DBDBDB;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-subtitle {
   font-size: 1.1rem;
    color: var(--text-medium);
    margin: 0 auto 40px; /* Corrección: Centrado del subtítulo */
    max-width: 700px;
 
}

.highlight {
    color: #ff0159;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    /* Naranja principal */
    background-color: #ff8400; /* Por ejemplo, 'Orange' */ 
    color: var(--white);
    border: none;
}
 
.btn-primary:hover {
    /* Naranja para el estado hover */
    background-color: #ff5500; /* Una versión ligeramente más oscura */
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--light-bg);
}

/* Header */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo span {
    margin-right: 10px;
    font-size: 1.4rem;
}

.nav-menu {
    display: flex;
}

.nav-item {
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.nav-item a {
    transition: color 0.3s;
}

.nav-item a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    background-color: var(--white);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image-main {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    position: relative;
    z-index: 2;
    box-shadow: var(--card-shadow);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-element {
    position: absolute;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    padding: 15px;
    z-index: 3;
}

.floating-element.element-1 {
    bottom: 3%;
    right: 85%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffbc42;
    color: var(--white);
}

.floating-element.element-2 {
    top: 21%;
    left: 95%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3fa7d6;
    color: var(--white);
    font-size: 1.8rem;
}

.floating-element.element-3 {
    top: 1%;
    right: 85%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:  #ff0159;
    color: var(--white);
    font-size: 1.7rem;
}

.floating-element.element-4 {
    bottom: 20%;
    left: 80%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}
/* About Section */
.about {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    padding: 20px 0;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-text {
    margin-bottom: 30px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 20px;
    margin: 0 auto 20px;
    max-width: 700px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Workshops Section */
.workshops {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.workshops-header {
    text-align: center;
    margin-bottom: 60px;
}

.workshops-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin: 0 auto 20px;
    max-width: 700px;
}

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.workshop-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.workshop-image {
    height: 200px;
    overflow: hidden;
}

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

.workshop-card:hover .workshop-image img {
    transform: scale(1.1);
}

.workshop-content {
    padding: 25px;
}

.workshop-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.workshop-description {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.workshop-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

/* Consultancy Section */
.consultancy {
    background-color: var(--light-bg);
}

.consultancy-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.consultancy-content {
    padding: 50px;
}

.consultancy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.consultancy-text {
    margin-bottom: 30px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.consultancy-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 1rem;
}

.feature-text {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1rem;
}

.consultancy-image {
    height: 100%;
}

.consultancy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

.contact-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-content {
    padding: 50px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-text {
    margin-bottom: 40px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: var(--primary);
    color: var(--white);
}

.contact-link:hover .contact-icon {
    background-color: var(--white);
    color: var(--primary);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-link-text {
    font-weight: 500;
    font-size: 1rem;
}

.contact-image {
    height: 100%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo span {
    margin-right: 10px;
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: var(--text-light);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-main {
        width: 350px;
        height: 350px;
    }
    
    .floating-element {
        transform: scale(0.8);
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-main {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .floating-element {
        display: none;
    }
	    .highlight {
            color: #ff0159;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
    
    .about-container,
    .consultancy-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-gallery {
        order: -1;
    }
    
    .services-grid,
    .workshop-cards,
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin-left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid,
    .workshop-cards,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .about-gallery {
        grid-template-columns: 1fr;
    }
    
    .consultancy-content,
    .contact-content {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    } 
    
    .hero-image-main {
        width: 250px;
        height: 250px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Estilos para la sección de testimonios */
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-box {
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.testimonial-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.elementor-image-box-title {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 5px;
    color: #333;
}

.destaque {
    color: #ff0159;
    font-weight: 700;
}

/* FAQ Styles */
.faq {
    background-color: var(--light-bg);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

/* Cambiado de i a span */
.faq-question span {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(180deg);
}

/* Corrección de estilos para el efecto de desplegar */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    /* La transición se mantiene para el efecto visual */
    transition: max-height 0.3s ease, padding 0.3s ease; 
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Suficiente para la mayoría de las respuestas */
    padding: 25px 30px; /* Padding solo cuando está activa */
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
 
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        background-color: #128c7e;
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}