/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L40 20L20 40L0 20Z" fill="none" stroke="%23e4414b" stroke-width="1" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds)"/></svg>') repeat;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables - DASANIR Brand Colors */
:root {
    --primary-red: #E4202B;
    --dark-red: #A01820;
    --light-red: #F0B2B2;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --border-color: #dee2e6;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    max-width: 300px;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    background: rgba(228, 32, 43, 0.1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

/* En web, el dropdown no es clickeable pero sí hover */
@media (min-width: 769px) {
    .dropdown-toggle {
        pointer-events: none;
        cursor: default;
    }
    
    /* Permitir hover para mostrar el menú */
    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: block !important;
    }
    
    /* Los items del dropdown sí son clickeables */
    .dropdown-item {
        pointer-events: auto;
        cursor: pointer;
    }
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    height: 100%;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown:hover .dropdown-toggle {
    color: var(--primary-red);
    background: rgba(228, 32, 43, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    width: 100%;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(228, 32, 43, 0.2);
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(228, 32, 43, 0.05);
    cursor: default;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(228, 32, 43, 0.05);
    color: var(--primary-red);
}

.dropdown-item {
    text-decoration: none;
}

/* Service Detail Sections */
.service-detail {
    padding: 4rem 0;
}

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-hero .service-image {
    position: relative;
}

.service-hero .service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Responsive for service sections */
@media (max-width: 768px) {
    .service-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero .service-image img {
        height: 250px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
}

/* Individual Service Pages Styles */
.service-hero-page {
    background: transparent;
    padding: 6rem 0 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.service-hero-page .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-page .hero-text h1 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-hero-page .hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-hero-page .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-page .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.service-description {
    padding: 4rem 0;
    background: white;
}

.service-description h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(228, 32, 43, 0.05) 0%, rgba(228, 32, 43, 0.1) 100%);
    border-radius: 15px;
    padding: 3rem;
    margin-top: 3rem;
    border-left: 5px solid var(--primary-red);
}

.highlight-box h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.highlight-box li i {
    color: var(--primary-red);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-features-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.aseo-features-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.admin-features-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-card .feature-icon i {
    font-size: 3rem;
    color: var(--primary-red);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(228, 32, 43, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li:before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.process-section {
    padding: 4rem 0;
    background: white;
}

.process-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    text-align: center;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-red);
}

/* Contact Page Styles */
.contact-hero-section {
    background: transparent;
    padding: 6rem 0 4rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-main-section {
    padding: 4rem 0;
    background: white;
}

.contact-main-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-details-list {
    margin: 2rem 0;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-detail-text h4 {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    color: var(--medium-gray);
    margin: 0;
}

.quick-contact-section {
    margin: 3rem auto 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.quick-contact-section h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.phone-btn {
    background: #007bff;
    color: white;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.email-btn {
    background: #dc3545;
    color: white;
}

.quick-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-quick-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-quick-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    text-align: center;
}

.services-quick-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-quick-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.service-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-quick-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-quick-icon i {
    font-size: 3rem;
    color: var(--primary-red);
}

.service-quick-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.service-quick-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.service-quick-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-quick-card li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(228, 32, 43, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-quick-card li:before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-quick-card .btn {
    width: 100%;
    text-align: center;
}

.why-choose-section {
    padding: 4rem 0;
    background: white;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
}

.why-choose-icon {
    margin-bottom: 1.5rem;
}

.why-choose-icon i {
    font-size: 3rem;
    color: var(--primary-red);
}

.why-choose-item h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-text h4 {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--medium-gray);
    margin: 0;
}

.quick-contact {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.quick-contact h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.quick-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.quick-btn.phone {
    background: #007bff;
    color: white;
}

.quick-btn.whatsapp {
    background: #25d366;
    color: white;
}

.quick-btn.email {
    background: #dc3545;
    color: white;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.btn-full {
    width: 100%;
}

.services-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-overview h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .service-icon {
    margin-bottom: 1.5rem;
}

.service-card .service-icon i {
    font-size: 3rem;
    color: var(--primary-red);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.why-choose-us {
    padding: 4rem 0;
    background: white;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    text-align: center;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-item {
    text-align: center;
    padding: 2rem;
}

.reason-icon {
    margin-bottom: 1.5rem;
}

.reason-icon i {
    font-size: 3rem;
    color: var(--primary-red);
}

.reason-item h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.reason-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.specialized-services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.specialized-services h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    text-align: center;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialized-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialized-item:hover {
    transform: translateY(-5px);
}

.specialized-icon {
    margin-bottom: 1.5rem;
}

.specialized-icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.specialized-item h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.specialized-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.benefits-section {
    padding: 4rem 0;
    background: white;
}

.benefits-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Individual Pages */
@media (max-width: 768px) {
    .service-hero-page .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-page .hero-text h1 {
        font-size: 2rem;
    }
    
    .service-hero-page .hero-image img {
        height: 250px;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .services-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .aseo-features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .admin-features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .specialized-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.section {
    display: none;
    padding: 2rem 0;
    min-height: calc(100vh - 80px);
}

.section.active {
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* Dashboard Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-content h3 {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    margin: 0;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 0.8rem;
    margin: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dashboard-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: var(--light-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.activity-content p {
    margin: 0;
    font-weight: 500;
}

.activity-time {
    color: var(--medium-gray);
    font-size: 0.8rem;
}

/* Due List */
.due-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.due-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.due-date {
    text-align: center;
    min-width: 60px;
}

.due-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
}

.due-date .month {
    display: block;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.due-content p {
    margin: 0;
    font-weight: 500;
}

.due-amount {
    color: var(--primary-red);
    font-weight: bold;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-box {
    position: relative;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--light-red);
    color: var(--primary-red);
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    height: 200px;
    background: linear-gradient(135deg, var(--light-red), var(--primary-red));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-image::before {
    content: '🏢';
    font-size: 4rem;
    opacity: 0.3;
}

.property-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.property-status.active {
    background: #28a745;
    color: var(--white);
}

.property-status.maintenance {
    background: #ffc107;
    color: var(--black);
}

.property-content {
    padding: 1.5rem;
}

.property-content h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.property-address {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.property-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.property-actions {
    display: flex;
    gap: 1rem;
}

/* Residents Table */
.residents-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.residents-table table {
    width: 100%;
    border-collapse: collapse;
}

.residents-table th {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

.residents-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.residents-table tr:hover {
    background: var(--light-gray);
}

.resident-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.resident-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.resident-name {
    font-weight: 500;
    margin: 0;
}

.resident-id {
    color: var(--medium-gray);
    font-size: 0.8rem;
    margin: 0;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.paid {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

/* Finance Styles */
.finance-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.finance-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.finance-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.finance-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
    margin: 0 0 0.5rem 0;
}

.finance-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.finance-change.positive {
    color: #28a745;
}

.finance-change.negative {
    color: #dc3545;
}

.finance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.finance-chart {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.finance-chart h3 {
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-container {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
    background: var(--white);
    padding: 1.5rem 0 1rem 0;
    margin-bottom: 0.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


.hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    text-align: left;
    grid-column: 1;
    display: block;
    width: 100%;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-header-mobile {
    display: none;
}

/* En desktop, el hero-text debe contener todo */
.hero-text {
    grid-column: 1;
    display: block;
    width: 100%;
}

/* Desktop: mostrar títulos en hero-text, ocultar hero-header-mobile */
.hero-title-desktop,
.hero-subtitle-desktop {
    display: block;
}

/* Móvil: ocultar títulos en hero-text, mostrar hero-header-mobile */
@media (max-width: 768px) {
    .hero-title-desktop,
    .hero-subtitle-desktop {
        display: none;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    font-weight: 600;
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-description p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions-below {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    grid-column: 2;
    width: 100%;
}

/* Hero Carousel */
.hero-carousel {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Títulos del carrusel */
.carousel-title {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(228, 32, 43, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideInDown 0.5s ease-out;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-title.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.admin-working-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.admin-person {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(228, 32, 43, 0.3);
    z-index: 3;
}

.admin-person i {
    font-size: 3rem;
    color: var(--white);
}

.admin-documents {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-red);
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 2;
}

.admin-documents i {
    font-size: 2rem;
    color: var(--primary-red);
}

.admin-calculator {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-red);
    position: absolute;
    bottom: -15px;
    left: 30px;
    z-index: 2;
}

.admin-calculator i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    right: 20%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hero-stat {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
}

.hero-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

/* Strengths and Benefits Section - Modern Gradient Design */
.strengths-benefits-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1rem 0;
    margin: 0.5rem auto;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(228, 32, 43, 0.1);
    max-width: 1400px;
}

/* Elementos decorativos modernos */
.strengths-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b, var(--primary-red));
}

.strengths-benefits-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b, var(--primary-red));
}


.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-buildings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.building {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatBuildings 8s ease-in-out infinite;
}

.building-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.building-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.building-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.building-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.building-5 {
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes floatBuildings {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.strengths-benefits-content {
    display: flex;
    gap: 4rem;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.fortalezas-section,
.beneficios-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fortalezas-section,
.beneficios-section {
    background: var(--white);
    padding: 4rem 3.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fortalezas-section:hover,
.beneficios-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-header {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.animated-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.animated-icon:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Asegurar que ambos iconos tengan la misma sombra */
.strength-icon,
.benefit-icon {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border-radius: 50%;
    opacity: 0.2;
}

.animated-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.animated-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 1rem;
    animation: slideInDown 1s ease-out;
    position: relative;
    text-align: center;
}



@keyframes slideInDown {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes expandLine {
    0% { width: 0; }
    100% { width: 100px; }
}

/* Strengths Grid */
.strengths-grid {
    display: grid;
    gap: 1.5rem;
}

.strength-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.strength-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red), #ff6b6b);
}

.strength-item:hover {
    background: linear-gradient(135deg, rgba(228, 32, 43, 0.05), rgba(255, 107, 107, 0.05));
    transform: translateY(-5px);
}

.strength-icon-small {
    font-size: 1.8rem;
    min-width: 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: white;
    flex-shrink: 0;
}

.strength-item p {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Modern Benefits Grid - Vertical Layout */
.beneficios-section .benefits-modern-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex: 1;
    justify-content: space-between;
}

/* Strengths Grid - Original design with titles */
.fortalezas-section .strengths-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    justify-content: space-between;
}

.fortalezas-section .strength-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(228, 32, 43, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.fortalezas-section .strength-item:hover {
    background: rgba(228, 32, 43, 0.1);
    transform: translateX(5px);
}

.fortalezas-section .strength-icon-small {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fortalezas-section .strength-content {
    flex: 1;
}

.fortalezas-section .strength-content h4 {
    color: var(--black);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.fortalezas-section .strength-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.beneficios-section .benefit-modern-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.beneficios-section .benefit-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
}

.beneficios-section .benefit-modern-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(228, 32, 43, 0.2);
}

.beneficios-section .benefit-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(228, 32, 43, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.beneficios-section .benefit-modern-card:hover .benefit-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(228, 32, 43, 0.4);
}

.beneficios-section .benefit-content-modern {
    flex: 1;
    text-align: left;
}

.beneficios-section .benefit-content-modern h4 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.beneficios-section .benefit-content-modern p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Animation Classes */
.animate-slide-left {
    animation: slideInLeft 1s ease-out;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes zoomIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Servicios Section */
.servicios-section {
    padding: 1rem 0;
    margin: 0.5rem 0;
}

/* Estilos para las listas de servicios dentro de las tarjetas */
.servicio-lista {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.servicio-lista li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.servicio-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary-red);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.servicios-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 3rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: stretch;
}

.servicio-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.administracion-card {
    border-top: 5px solid var(--primary-red);
}

.aseo-card {
    border-top: 5px solid var(--primary-red);
}

.obra-card {
    border-top: 5px solid var(--primary-red);
}

.servicio-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 1rem;
    text-align: center;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

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

.servicio-card p {
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    text-align: justify;
    display: flex;
    align-items: center;
}

.btn-servicio {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    min-height: 48px;
}

.btn-servicio:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
}

.btn-servicio::after {
    content: '→';
    font-size: 1.2rem;
    margin-left: 0.5rem;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--black);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.about-text p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-container {
    position: relative;
    background: linear-gradient(135deg, var(--light-gray), #e9ecef);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.construction-icon {
    font-size: 6rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-stat:hover {
    transform: translateX(10px);
}

.about-stat i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.about-stat span {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
}

/* Main Services Section */
.main-services-section {
    margin-top: 3rem;
}

/* Main Service */
.main-service {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-red);
}

.main-service-content h3 {
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.main-service-content p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: bold;
}

.service-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Secondary Services */
.secondary-services {
    margin-top: 3rem;
}

.secondary-services h3 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 0.8rem;
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-image {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.client-placeholder {
    font-size: 3rem;
    opacity: 0.8;
}

.client-info {
    padding: 1.5rem;
}

.client-info h3 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.client-address,
.client-phone,
.client-email {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.client-address {
    font-weight: 500;
}

/* Contact Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-text h4 {
    color: var(--black);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--medium-gray);
    margin: 0;
}

/* Form Styles */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.close {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        display: flex;
        align-items: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Dropdown responsive para móvil */
    .dropdown {
        width: 100%;
    }
    
    .dropdown .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        color: var(--dark-gray);
        background: transparent;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        cursor: pointer;
        border: none;
        font-family: inherit;
        margin-bottom: 0.5rem;
    }
    
    .dropdown .nav-link:hover,
    .dropdown .nav-link:focus {
        color: var(--primary-red);
        background: rgba(228, 32, 43, 0.1);
    }
    
    .dropdown .nav-link::after {
        display: inline !important;
        content: '▼';
        font-size: 10px;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .nav-link::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin: 0;
        border-radius: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        padding: 0;
        display: block !important;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 400px !important;
        display: block !important;
        overflow: visible !important;
        padding: 0.5rem 0 !important;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        border-bottom: none;
        font-size: 1rem;
        color: var(--dark-gray);
        transition: all 0.3s ease;
        border-radius: 5px;
        margin: 0.25rem 0;
        display: block !important;
        text-align: center;
        text-decoration: none;
        width: 100%;
        background: rgba(248, 249, 250, 0.8);
        border: 1px solid rgba(228, 32, 43, 0.1);
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        color: var(--primary-red);
        background: rgba(228, 32, 43, 0.1);
    }
    
    .dropdown.active .dropdown-item {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .logo-image {
        height: 55px;
        max-width: 250px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .finance-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .main-service {
        padding: 2rem;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem;
        text-align: center;
        grid-template-columns: none !important;
    }
    
    .hero-header-mobile {
        display: block !important;
        order: 1;
        text-align: center;
        margin-bottom: 0.2rem;
    }
    
    .hero-text {
        grid-column: unset !important;
        width: 100% !important;
        order: 3;
        display: flex;
        flex-direction: column;
        margin-top: 1.5rem;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-image {
        grid-column: unset !important;
        width: 100% !important;
        order: 2;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-section {
        padding: 1.5rem 0 3rem 0;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-carousel {
        max-width: 320px;
    }
    
    .carousel-container {
        height: 240px;
    }
    
    .admin-person i {
        font-size: 2.2rem;
    }
    
    .admin-documents {
        width: 55px;
        height: 55px;
        top: -12px;
        right: 12px;
    }
    
    .admin-documents i {
        font-size: 1.3rem;
    }
    
    .admin-calculator {
        width: 45px;
        height: 45px;
        bottom: -8px;
        left: 18px;
    }
    
    .admin-calculator i {
        font-size: 1.1rem;
    }
    
    .floating-element {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image-container {
        padding: 2rem;
    }
    
    .construction-icon {
        font-size: 4rem;
    }
    
    .strengths-benefits-content {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .animated-title {
        font-size: 1.5rem;
    }
    
    .animated-icon {
        width: 60px;
        height: 60px;
    }
    
    .animated-icon i {
        font-size: 1.5rem;
    }
    
    .fortalezas-section,
    .beneficios-section {
        padding: 2.5rem 2rem;
    }
    
    .strength-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .beneficios-section .benefits-modern-grid {
        gap: 2rem;
    }
    
    .beneficios-section .benefit-modern-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .beneficios-section .benefit-content-modern {
        text-align: center;
    }
    
    .fortalezas-section .strengths-grid {
        gap: 1.5rem;
    }
    
    .fortalezas-section .strength-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .fortalezas-section .strength-content {
        text-align: center;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }
    
    .servicios-title {
        font-size: 2rem;
    }
    
    .servicio-card {
        padding: 1.5rem;
        justify-content: space-between;
        min-height: 500px;
    }
    
    .servicio-card h3 {
        font-size: 1.2rem;
        min-height: 2.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .servicio-image {
        height: 180px;
        flex-shrink: 0;
    }
    
    .servicio-card p {
        text-align: justify;
        display: flex;
        align-items: center;
    }
    
    .btn-servicio {
        flex-shrink: 0;
        min-height: 48px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .finance-overview {
        grid-template-columns: 1fr;
    }
    
    .residents-table {
        overflow-x: auto;
    }
    
    .residents-table table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .property-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .logo-image {
        height: 50px;
        max-width: 220px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 1rem 0 2.5rem 0;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem;
        grid-template-columns: none !important;
    }
    
    .hero-header-mobile {
        display: block !important;
        order: 1;
        text-align: center;
        margin-bottom: 0.2rem;
    }
    
    .hero-text {
        order: 3;
        grid-column: unset !important;
        width: 100% !important;
        margin-top: 1.5rem;
    }
    
    .hero-image {
        order: 2;
        grid-column: unset !important;
        margin: 0 auto;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-carousel {
        max-width: 300px;
    }
    
    .carousel-container {
        height: 220px;
    }
    
    .admin-person {
        width: 70px;
        height: 70px;
    }
    
    .admin-person i {
        font-size: 1.8rem;
    }
    
    .admin-documents {
        width: 45px;
        height: 45px;
        top: -8px;
        right: 8px;
    }
    
    .admin-documents i {
        font-size: 1.1rem;
    }
    
    .admin-calculator {
        width: 35px;
        height: 35px;
        bottom: -4px;
        left: 12px;
    }
    
    .admin-calculator i {
        font-size: 0.9rem;
    }
    
    .floating-element {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions-below {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-image-container {
        padding: 1.5rem;
    }
    
    .construction-icon {
        font-size: 3rem;
    }
    
    .section-header h3 {
        font-size: 1.3rem;
    }
    
    .section-icon {
        width: 45px;
        height: 45px;
    }
    
    .section-icon i {
        font-size: 1.3rem;
    }
    
    .animated-title {
        font-size: 1.3rem;
    }
    
    .animated-icon {
        width: 50px;
        height: 50px;
    }
    
    .animated-icon i {
        font-size: 1.3rem;
    }
    
    .strength-item {
        padding: 1rem;
    }
    
    .strength-item p {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .strengths-benefits-content {
        flex-direction: column;
        padding: 0 0.5rem;
    }
    
    .fortalezas-section,
    .beneficios-section {
        padding: 2rem 1.5rem;
    }
    
    .servicios-grid {
        padding: 0 1rem;
        align-items: stretch;
    }
    
    .servicio-card {
        padding: 1rem;
        justify-content: space-between;
        min-height: 450px;
    }
    
    .servicio-card h3 {
        min-height: 2.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .servicio-image {
        height: 150px;
        flex-shrink: 0;
    }
    
    .servicio-card p {
        text-align: justify;
        display: flex;
        align-items: center;
    }
    
    .btn-servicio {
        flex-shrink: 0;
        min-height: 48px;
    }
}

/* Animation for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section.active {
    animation: fadeIn 0.5s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Reducir espacios en móvil para todas las secciones */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem 0;
        margin-bottom: 0.5rem;
    }
    
    .servicios-section {
        padding: 1rem 0;
        margin: 0.5rem 0;
    }
    
    .strengths-benefits-section {
        padding: 1rem 0;
        margin: 0.5rem 0;
    }
    
    .section-title {
        margin-bottom: 1rem;
    }
    
    /* Centrar las tarjetas de servicios en móvil */
    .servicios-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .servicio-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Nuestro Equipo Section */
.equipo-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 1rem 0;
}

.equipo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clientes-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.equipo-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.equipo-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.equipo-card {
    background: var(--white);
    border-radius: 15px 15px 0 0;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    overflow: hidden;
}

.equipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.equipo-card:hover .equipo-image img {
    transform: scale(1.05);
}

.equipo-image {
    margin-bottom: 0;
    height: 140px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
}



.equipo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.equipo-info {
    padding: 1rem;
    background: var(--white);
}

.equipo-info h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.equipo-cargo {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.equipo-descripcion {
    font-size: 0.8rem;
    color: var(--dark-gray);
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: justify;
}

.equipo-contacto {
    background: var(--white);
    border-radius: 0;
    padding: 0;
    border-left: none;
    margin-top: 1rem;
}

.equipo-contacto p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
    color: var(--dark-gray);
    font-size: 0.75rem;
    text-align: left;
}

.equipo-contacto p:last-child {
    margin-bottom: 0;
}

.equipo-contacto i {
    color: var(--primary-red);
    width: 16px;
    flex-shrink: 0;
}

.equipo-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.equipo-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.equipo-whatsapp i {
    color: white;
    font-size: 1.1rem;
}

/* Testimonios Section */
.testimonios-section {
    padding: 2rem 0;
    background: transparent;
    margin: 1rem 0;
}

.testimonios-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonios-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonio-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonio-stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonio-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonio-card p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-red);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonio-card p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-red);
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: serif;
}

.testimonio-author h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonio-author span {
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive para equipo */
@media (max-width: 768px) {
    .equipo-section {
        padding: 2rem 0;
    }
    
    .equipo-container {
        padding: 0 1rem;
    }
    
    .clientes-container {
        padding: 0 1rem;
    }
    
    .equipo-section .section-title {
        font-size: 2rem;
    }
    
    .equipo-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .equipo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .equipo-card {
        padding: 0;
    }
    
    .equipo-image {
        height: 120px;
    }
    
    .equipo-info {
        padding: 0.8rem;
    }
    
    .equipo-info h3 {
        font-size: 0.9rem;
    }
    
    .equipo-cargo {
        font-size: 0.8rem;
    }
    
    .equipo-descripcion {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .equipo-contacto {
        padding: 0;
    }
    
    .equipo-contacto p {
        font-size: 0.85rem;
    }
    
    .equipo-whatsapp {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        margin-top: 0.4rem;
    }
}

/* Responsive para testimonios */
@media (max-width: 768px) {
    .testimonios-section {
        padding: 1.5rem 0;
    }
    
    .testimonios-section .section-title {
        font-size: 2rem;
    }
    
    .testimonios-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonio-card {
        padding: 1.5rem;
    }
    
    .testimonio-card p {
        font-size: 1rem;
    }
    
    .testimonio-stars i {
        font-size: 1.1rem;
    }
}

/* Nuestros Clientes Carousel Section */
.clientes-carousel-section {
    padding: 2rem 0;
    background: var(--white);
    margin: 1rem 0;
}

.clientes-carousel-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.clientes-carousel-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clientes-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    padding: 0 1rem;
}

.clientes-track {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cliente-card {
    width: 300px;
    max-width: calc(33.333% - 1rem);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid var(--primary-red);
    margin: 0;
    flex-shrink: 0;
    display: none;
}

.cliente-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.cliente-card:hover .cliente-image img {
    transform: scale(1.05);
}

.cliente-info {
    padding: 1.5rem;
    text-align: center;
    background: transparent;
}

.cliente-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.cliente-address,
.cliente-phone,
.cliente-email {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.cliente-address::before {
    content: '📍';
    font-size: 1rem;
}

.cliente-phone::before {
    content: '📞';
    font-size: 1rem;
}

.cliente-email::before {
    content: '✉️';
    font-size: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

.carousel-dots .dot:hover {
    background: var(--primary-red);
    opacity: 0.7;
}

/* Botón Nuestros Clientes */
.clientes-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    cursor: pointer;
}

.clientes-button:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 32, 43, 0.3);
}

.clientes-button i {
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive para el carrusel de clientes */
@media (max-width: 768px) {
    .clientes-carousel-section {
        padding: 1.5rem 0;
    }
    
    .clientes-carousel-section .section-title {
        font-size: 2rem;
    }
    
    .clientes-carousel-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .clientes-carousel {
        padding: 0 0.5rem;
    }
    
    .clientes-track {
        gap: 1rem;
    }
    
    .cliente-card {
        width: 100%;
        max-width: 350px;
        margin: 0;
    }
    
    .cliente-image {
        height: 180px;
    }
    
    .cliente-info {
        padding: 1.2rem;
    }
    
    .cliente-info h3 {
        font-size: 1.2rem;
    }
    
    .cliente-address,
    .cliente-phone,
    .cliente-email {
        font-size: 0.85rem;
    }
}

/* Página Nuestros Clientes */
.page-hero {
    background: transparent;
    color: var(--primary-red);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: var(--black);
}

.clientes-grid-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.cliente-card-detailed {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid var(--primary-red);
}

.cliente-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cliente-card-detailed .cliente-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.cliente-card-detailed .cliente-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cliente-card-detailed:hover .cliente-image img {
    transform: scale(1.05);
}

.cliente-card-detailed .cliente-info {
    padding: 2rem;
}

.cliente-card-detailed .cliente-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cliente-details {
    margin-bottom: 1.5rem;
}

.cliente-details p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cliente-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive para página de clientes */
@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .clientes-grid-section {
        padding: 3rem 0;
    }
    
    .clientes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .cliente-card-detailed .cliente-image {
        height: 200px;
    }
    
    .cliente-card-detailed .cliente-info {
        padding: 1.5rem;
    }
    
    .cliente-card-detailed .cliente-info h3 {
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.footer-section p {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-align: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-contact i {
    color: var(--primary-red);
    width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}


.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-align: center;
}

.footer-contact-info i {
    color: var(--primary-red);
    width: 20px;
}

.footer-cta {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-cta .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-social {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin: 2rem 0;
}

.footer-social h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive para footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section p {
        font-size: 1rem;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-social {
        padding: 1.5rem 0;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-cta .btn {
        width: 100%;
        max-width: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-contact-info {
        align-items: center;
        text-align: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
        text-align: center;
    }
}

/* Patrón de fondo diferente para móvil */
@media (max-width: 768px) {
    body::after {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds-mobile" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L40 20L20 40L0 20Z" fill="none" stroke="%23e4414b" stroke-width="1" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds-mobile)"/></svg>') repeat;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 65px;
        height: 65px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
    
    /* Títulos del carrusel en móvil */
    .carousel-title {
        font-size: 0.9rem;
        padding: 8px 16px;
        top: -35px;
        white-space: nowrap;
        max-width: 90%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .carousel-container {
        margin-top: 35px;
    }
    
    /* Centrar texto de botones en móvil */
    .hero-actions-below .btn {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    /* Mejoras adicionales para móvil */
    .container {
        padding: 0 15px;
    }
    
    /* Mejorar navegación móvil */
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 200px;
    }
    
    /* Mejorar espaciado en secciones */
    .hero-section {
        padding: 1rem 0 2rem 0;
    }
    
    .servicios-section {
        padding: 1.5rem 0;
    }
    
    .strengths-benefits-section {
        padding: 1.5rem 0;
    }
    
    .testimonios-section {
        padding: 1.5rem 0;
    }
    
    .clientes-carousel-section {
        padding: 1.5rem 0;
    }
    
    /* Mejorar tarjetas de servicios en móvil */
    .servicio-card {
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .servicio-image {
        height: 160px;
    }
    
    .servicio-card h3 {
        font-size: 1.1rem;
        min-height: 2.2rem;
    }
    
    .servicio-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Mejorar botones en móvil */
    .btn-servicio {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Mejorar sección de fortalezas y beneficios */
    .strengths-benefits-content {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .fortalezas-section,
    .beneficios-section {
        padding: 2rem 1.5rem;
        margin: 0 5px;
    }
    
    .strength-item {
        padding: 1.2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .strength-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .benefit-item {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Mejorar testimonios en móvil */
    .testimonio-card {
        margin: 0 10px;
        padding: 1.5rem 1.2rem;
    }
    
    .testimonio-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Mejorar carrusel de clientes en móvil */
    .cliente-card {
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .cliente-info {
        padding: 1rem;
    }
    
    .cliente-info h3 {
        font-size: 1.1rem;
    }
    
    .cliente-address,
    .cliente-phone,
    .cliente-email {
        font-size: 0.8rem;
    }
    
    /* Mejorar footer en móvil */
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-contact-info p {
        font-size: 0.9rem;
    }
    
    /* Mejorar botón WhatsApp en móvil */
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    /* Mejorar títulos en móvil */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .servicios-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    /* Mejorar espaciado general */
    .main-content {
        margin-top: 70px;
    }
    
    /* Mejorar formularios en móvil */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Evita zoom en iOS */
        padding: 1rem;
    }
    
    /* Mejorar botones de contacto */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Mejorar iconos en móvil */
    .animated-icon {
        width: 50px;
        height: 50px;
    }
    
    .animated-icon i {
        font-size: 1.3rem;
    }
    
    .strength-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .benefit-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Mejorar animaciones en móvil */
    .floating-element {
        font-size: 1.2rem;
    }
    
    .building {
        font-size: 1.5rem;
    }
    
    /* Mejorar carrusel en móvil */
    .carousel-container {
        height: 200px;
        margin-top: 30px;
    }
    
    .carousel-title {
        font-size: 0.8rem;
        padding: 6px 12px;
        top: -30px;
    }
    
    /* Mejorar elementos flotantes en móvil */
    .admin-person {
        width: 60px;
        height: 60px;
    }
    
    .admin-person i {
        font-size: 1.5rem;
    }
    
    .admin-documents {
        width: 40px;
        height: 40px;
        top: -8px;
        right: 8px;
    }
    
    .admin-documents i {
        font-size: 1rem;
    }
    
    .admin-calculator {
        width: 35px;
        height: 35px;
        bottom: -4px;
        left: 10px;
    }
    
    .admin-calculator i {
        font-size: 0.8rem;
    }
    
    /* Mejorar estadísticas en móvil */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .hero-stat {
        padding: 1.2rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    /* Mejorar botones de acción en móvil */
    .hero-actions-below {
        padding: 0 15px;
        gap: 1rem;
    }
    
    .hero-actions-below .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Mejorar texto en móvil */
    .hero-description p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 15px;
    }
    
    /* Mejorar espaciado entre secciones */
    .section {
        margin-bottom: 1rem;
    }
    
    /* Mejorar accesibilidad táctil */
    .btn,
    .nav-link,
    .dropdown-item,
    .social-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mejorar contraste en móvil */
    .nav-link {
        color: var(--dark-gray);
        font-weight: 500;
    }
    
    .dropdown-item {
        color: var(--dark-gray);
        font-weight: 500;
    }
    
    /* Mejorar hover states para touch */
    .btn:active,
    .nav-link:active,
    .dropdown-item:active {
        transform: scale(0.98);
    }
    
    /* Mejorar scroll suave */
    html {
        scroll-behavior: smooth;
    }
    
    /* Mejorar performance en móvil */
    .hero-section,
    .servicios-section,
    .strengths-benefits-section {
        will-change: transform;
    }
    
    /* Mejorar legibilidad */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Mejoras adicionales para pantallas muy pequeñas */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-image {
        height: 45px;
        max-width: 180px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .servicios-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .servicio-card {
        margin: 0 5px;
        max-width: calc(100% - 10px);
        padding: 1rem;
    }
    
    .servicio-image {
        height: 140px;
    }
    
    .servicio-card h3 {
        font-size: 1rem;
        min-height: 2rem;
    }
    
    .servicio-card p {
        font-size: 0.85rem;
    }
    
    .btn-servicio {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .strengths-benefits-content {
        flex-direction: column;
        padding: 0 5px;
    }
    
    .fortalezas-section,
    .beneficios-section {
        padding: 1.5rem 1rem;
        margin: 0 2px;
    }
    
    .strength-item {
        padding: 1rem 0.8rem;
    }
    
    .strength-item p {
        font-size: 0.85rem;
    }
    
    .beneficios-section .benefit-item {
        padding: 1.5rem;
    }
    
    .beneficios-section .benefit-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .beneficios-section .benefit-content h4 {
        font-size: 1.2rem;
    }
    
    .beneficios-section .benefit-content p {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
    }
    
    .benefit-item::before {
        width: 60px;
        height: 60px;
        transform: translate(20px, -20px);
    }
    
    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.8rem;
    }
    
    .testimonio-card {
        margin: 0 5px;
        padding: 1.2rem 1rem;
    }
    
    .testimonio-card p {
        font-size: 0.9rem;
    }
    
    .cliente-card {
        margin: 0 5px;
        max-width: calc(100% - 10px);
    }
    
    .cliente-info {
        padding: 0.8rem;
    }
    
    .cliente-info h3 {
        font-size: 1rem;
    }
    
    .cliente-address,
    .cliente-phone,
    .cliente-email {
        font-size: 0.75rem;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-contact-info p {
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-contact-info {
        align-items: center;
        text-align: center;
    }
    
    .footer-cta {
        justify-content: center;
    }
    
    .footer-cta .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .whatsapp-button {
        bottom: 10px;
        right: 10px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 22px;
    }
    
    .carousel-container {
        height: 180px;
        margin-top: 25px;
    }
    
    .carousel-title {
        font-size: 0.7rem;
        padding: 5px 10px;
        top: -25px;
    }
    
    .admin-person {
        width: 50px;
        height: 50px;
    }
    
    .admin-person i {
        font-size: 1.2rem;
    }
    
    .admin-documents {
        width: 35px;
        height: 35px;
        top: -6px;
        right: 6px;
    }
    
    .admin-documents i {
        font-size: 0.9rem;
    }
    
    .admin-calculator {
        width: 30px;
        height: 30px;
        bottom: -3px;
        left: 8px;
    }
    
    .admin-calculator i {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        padding: 0 10px;
    }
    
    .hero-stat {
        padding: 1rem;
    }
    
    .hero-stat-number {
        font-size: 1.3rem;
    }
    
    .hero-actions-below {
        padding: 0 10px;
    }
    
    .hero-actions-below .btn {
        max-width: 260px;
    }
    
    .hero-description p {
        padding: 0 10px;
        font-size: 0.95rem;
    }
    
    .animated-icon {
        width: 45px;
        height: 45px;
    }
    
    .animated-icon i {
        font-size: 1.1rem;
    }
    
    .strength-icon-small {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-element {
        font-size: 1rem;
    }
    
    .building {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .dropdown-item {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-logo-img {
        width: 150px;
        height: 150px;
    }
    
    .main-content {
        margin-top: 65px;
    }
    
    .hero-section {
        padding: 0.8rem 0 1.5rem 0;
    }
    
    .servicios-section {
        padding: 1.2rem 0;
    }
    
    .strengths-benefits-section {
        padding: 1.2rem 0;
    }
    
    .testimonios-section {
        padding: 1.2rem 0;
    }
    
    .clientes-carousel-section {
        padding: 1.2rem 0;
    }
    
    .footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer-social {
        padding: 1.2rem 0;
    }
    
    .footer-social h4 {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 0.6rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .testimonio-stars i {
        font-size: 1rem;
    }
    
    .testimonio-author h4 {
        font-size: 1.1rem;
    }
    
    .testimonio-author span {
        font-size: 0.9rem;
    }
    
    .equipo-section {
        padding: 1.5rem 0;
    }
    
    .equipo-container {
        padding: 0 0.5rem;
    }
    
    .clientes-container {
        padding: 0 0.5rem;
    }
    
    .equipo-section .section-title {
        font-size: 1.8rem;
    }
    
    .equipo-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .equipo-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .equipo-card {
        padding: 0;
    }
    
    .equipo-image {
        height: 100px;
    }
    
    .equipo-info {
        padding: 0.6rem;
    }
    
    .equipo-info h3 {
        font-size: 0.8rem;
    }
    
    .equipo-cargo {
        font-size: 0.7rem;
    }
    
    .equipo-descripcion {
        font-size: 0.65rem;
    }
    
    .equipo-contacto {
        padding: 0;
    }
    
    .equipo-contacto p {
        font-size: 0.8rem;
    }
    
    .equipo-whatsapp {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        margin-top: 0.3rem;
    }
    
    .clientes-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .clientes-button i {
        font-size: 1.1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
    }
    
    .cta-buttons .btn {
        max-width: 260px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 0.95rem;
    }
    
    .cliente-card-detailed .cliente-info h3 {
        font-size: 1.2rem;
    }
    
    .cliente-details p {
        font-size: 0.9rem;
    }
    
    .service-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-main-grid {
        gap: 1.5rem;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-detail-item {
        padding: 0.8rem;
    }
    
    .contact-detail-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .quick-contact-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .services-quick-section h2 {
        font-size: 1.8rem;
    }
    
    .services-quick-subtitle {
        font-size: 1rem;
    }
    
    .service-quick-card {
        padding: 2rem 1.5rem;
    }
    
    .service-quick-icon i {
        font-size: 2.5rem;
    }
    
    .service-quick-card h3 {
        font-size: 1.3rem;
    }
    
    .service-quick-card p {
        font-size: 0.95rem;
    }
    
    .service-quick-card li {
        font-size: 0.9rem;
    }
    
    .service-hero-page .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .service-hero-page .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-hero-page .hero-image img {
        height: 200px;
    }
    
    .service-description h2 {
        font-size: 1.8rem;
    }
    
    .service-description p {
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 2rem;
    }
    
    .highlight-box h3 {
        font-size: 1.3rem;
    }
    
    .highlight-box li {
        font-size: 1rem;
    }
    
    .service-features-section h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card .feature-icon i {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card li {
        font-size: 0.9rem;
    }
    
    .process-section h2 {
        font-size: 1.8rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        min-width: 180px;
    }
}

/* Proveedores Page Styles */
.proveedores-benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.categories-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.proveedores-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 3rem auto 0;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

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

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-content ul {
    list-style: none;
    padding: 0;
}

.category-content li {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.category-content li::before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.5;
}

.contact-form-section {
    padding: 4rem 0;
    background: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Ocultar mensajes de validación del navegador */
input:invalid,
textarea:invalid,
select:invalid {
    box-shadow: none;
}

input:invalid:focus,
textarea:invalid:focus,
select:invalid:focus {
    box-shadow: none;
}

/* Ocultar tooltips de validación */
input::-webkit-validation-bubble-message,
textarea::-webkit-validation-bubble-message,
select::-webkit-validation-bubble-message {
    display: none;
}

input::-webkit-validation-bubble-arrow,
textarea::-webkit-validation-bubble-arrow,
select::-webkit-validation-bubble-arrow {
    display: none;
}

.form-message i {
    font-size: 1.2rem;
}

/* Benefits Horizontal Flow - New Design for Admin Page */
.benefits-horizontal-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 3rem 0;
}

.benefit-flow-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    width: 300px;
    height: 280px;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-flow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    border-radius: 20px 20px 0 0;
}

.benefit-flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-flow-content h4 {
    color: var(--black);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-flow-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


/* Responsive para Proveedores */
@media (max-width: 768px) {
    .benefits-horizontal-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefit-flow-item {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proveedores-categories-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .category-content {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .proveedores-benefits-section,
    .categories-section,
    .process-section,
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-container {
        padding: 1rem;
    }
}

/* Modern CTA Section */
.cta-section-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e4414b" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e4414b" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e4414b" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e4414b" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e4414b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(228, 65, 75, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 65, 75, 0.4);
}

.cta-btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 65, 75, 0.2);
}

/* Responsive para CTA Modern */
@media (max-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-actions {
        gap: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section-modern {
        padding: 3rem 0;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
}

/* New CTA Section Design */
.cta-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e4414b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta-content-new {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(228, 65, 75, 0.3);
    animation: pulse 2s infinite;
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-content-new h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content-new p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(228, 65, 75, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(228, 65, 75, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(228, 65, 75, 0.3);
    }
}

/* Responsive para New CTA */
@media (max-width: 768px) {
    .cta-content-new h2 {
        font-size: 2.2rem;
    }
    
    .cta-content-new p {
        font-size: 1.1rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-section-new {
        padding: 3rem 0;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .cta-content-new h2 {
        font-size: 1.8rem;
    }
    
    .cta-content-new p {
        font-size: 1rem;
    }
}

/* Elegant CTA Section Design */
.cta-section-elegant {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}


.cta-content-centered {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(228, 65, 75, 0.3);
}

.cta-badge i {
    font-size: 0.8rem;
}

.cta-content-centered h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.highlight-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.highlight-item span {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}


/* Responsive para Elegant CTA */
@media (max-width: 768px) {
    .cta-content-centered {
        padding: 0 1rem;
    }
    
    .cta-content-centered h2 {
        font-size: 2.2rem;
    }
    
    .cta-content-centered p {
        font-size: 1.1rem;
    }
    
    .cta-highlights {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .cta-section-elegant {
        padding: 4rem 0;
    }
    
    .cta-content-centered h2 {
        font-size: 1.8rem;
    }
    
    .cta-content-centered p {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
    }
    
    .highlight-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .highlight-item span {
        font-size: 1rem;
    }
}

/* Admin CTA Section Design - New */
.admin-cta-section-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.admin-cta-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.admin-cta-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse-red 2s infinite;
}

.admin-cta-icon-new i {
    font-size: 2.5rem;
    color: white;
}

.admin-cta-text-new h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.admin-cta-text-new p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.admin-cta-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.admin-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.admin-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.admin-feature-item i {
    color: var(--primary-red);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.admin-feature-item span {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Obra Civil CTA Section Design - New */
.obra-cta-section-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.obra-cta-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.obra-cta-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse-red 2s infinite;
}

.obra-cta-icon-new i {
    font-size: 2.5rem;
    color: white;
}

.obra-cta-text-new h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.obra-cta-text-new p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.obra-cta-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.obra-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.obra-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.obra-feature-item i {
    color: var(--primary-red);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.obra-feature-item span {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Proveedores CTA Section Design - New */
.proveedores-cta-section-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.proveedores-cta-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.proveedores-cta-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse-red 2s infinite;
}

.proveedores-cta-icon-new i {
    font-size: 2.5rem;
    color: white;
}

.proveedores-cta-text-new h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.proveedores-cta-text-new p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.proveedores-cta-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.proveedores-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.proveedores-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.proveedores-feature-item i {
    color: var(--primary-red);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.proveedores-feature-item span {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Aseo CTA Section Design */
.aseo-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}


.aseo-cta-content-centered {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.aseo-cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse-red 2s infinite;
}

.aseo-cta-icon i {
    font-size: 2rem;
    color: white;
}

.aseo-cta-content-centered h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.aseo-cta-content-centered p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.aseo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.aseo-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.aseo-feature:hover {
    transform: translateY(-2px);
}

.aseo-feature i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.aseo-feature span {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 8px 25px rgba(228, 65, 75, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(228, 65, 75, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(228, 65, 75, 0.3);
    }
}

/* Responsive para Admin CTA - New */
@media (max-width: 768px) {
    .admin-cta-content-new {
        padding: 0 1rem;
    }
    
    .admin-cta-text-new h2 {
        font-size: 2rem;
    }
    
    .admin-cta-text-new p {
        font-size: 1rem;
    }
    
    .admin-cta-features {
        max-width: 100%;
    }
    
    .admin-feature-item {
        padding: 1rem;
    }
    
    .admin-feature-item i {
        font-size: 1.2rem;
    }
    
    .admin-feature-item span {
        font-size: 1rem;
    }
}

/* Responsive para Obra Civil CTA - New */
@media (max-width: 768px) {
    .obra-cta-content-new {
        padding: 0 1rem;
    }
    
    .obra-cta-text-new h2 {
        font-size: 2rem;
    }
    
    .obra-cta-text-new p {
        font-size: 1rem;
    }
    
    .obra-cta-features {
        max-width: 100%;
    }
    
    .obra-feature-item {
        padding: 1rem;
    }
    
    .obra-feature-item i {
        font-size: 1.2rem;
    }
    
    .obra-feature-item span {
        font-size: 1rem;
    }
}

/* Responsive para Proveedores CTA - New */
@media (max-width: 768px) {
    .proveedores-cta-content-new {
        padding: 0 1rem;
    }
    
    .proveedores-cta-text-new h2 {
        font-size: 2rem;
    }
    
    .proveedores-cta-text-new p {
        font-size: 1rem;
    }
    
    .proveedores-cta-features {
        max-width: 100%;
    }
    
    .proveedores-feature-item {
        padding: 1rem;
    }
    
    .proveedores-feature-item i {
        font-size: 1.2rem;
    }
    
    .proveedores-feature-item span {
        font-size: 1rem;
    }
}

/* Responsive para Aseo CTA */
@media (max-width: 768px) {
    .aseo-cta-content-centered {
        padding: 0 1rem;
    }
    
    .aseo-cta-content-centered h2 {
        font-size: 2rem;
    }
    
    .aseo-cta-content-centered p {
        font-size: 1.1rem;
    }
    
    .aseo-features {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .admin-cta-section-new {
        padding: 3rem 0;
    }
    
    .admin-cta-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .admin-cta-icon-new i {
        font-size: 2rem;
    }
    
    .admin-cta-text-new h2 {
        font-size: 1.8rem;
    }
    
    .admin-cta-text-new p {
        font-size: 0.95rem;
    }
    
    .admin-feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .admin-feature-item i {
        font-size: 1rem;
    }
    
    .admin-feature-item span {
        font-size: 0.9rem;
    }
    
    .obra-cta-section-new {
        padding: 3rem 0;
    }
    
    .obra-cta-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .obra-cta-icon-new i {
        font-size: 2rem;
    }
    
    .obra-cta-text-new h2 {
        font-size: 1.8rem;
    }
    
    .obra-cta-text-new p {
        font-size: 0.95rem;
    }
    
    .obra-feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .obra-feature-item i {
        font-size: 1rem;
    }
    
    .obra-feature-item span {
        font-size: 0.9rem;
    }
    
    .proveedores-cta-section-new {
        padding: 3rem 0;
    }
    
    .proveedores-cta-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .proveedores-cta-icon-new i {
        font-size: 2rem;
    }
    
    .proveedores-cta-text-new h2 {
        font-size: 1.8rem;
    }
    
    .proveedores-cta-text-new p {
        font-size: 0.95rem;
    }
    
    .proveedores-feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .proveedores-feature-item i {
        font-size: 1rem;
    }
    
    .proveedores-feature-item span {
        font-size: 0.9rem;
    }
    
    .aseo-cta-section {
        padding: 3rem 0;
    }
    
    .aseo-cta-content-centered h2 {
        font-size: 1.8rem;
    }
    
    .aseo-cta-content-centered p {
        font-size: 1rem;
    }
    
    .aseo-feature {
        padding: 0.8rem;
    }
    
    .aseo-feature span {
        font-size: 1rem;
    }
}

/* Brochure Horizontal Section */
.brochure-horizontal-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 2rem 0;
}

.brochure-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brochure-header h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.brochure-header p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.brochure-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.brochure-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.brochure-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.brochure-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    color: white;
    border: none;
}

.brochure-actions .btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.brochure-actions .btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

.brochure-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 3px solid var(--primary-red);
}

.brochure-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Responsive Design for Brochure */
@media (max-width: 768px) {
    .brochure-horizontal-section {
        padding: 2rem 0;
    }
    
    .brochure-header h2 {
        font-size: 2rem;
    }
    
    .brochure-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .brochure-iframe {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .brochure-header h2 {
        font-size: 1.8rem;
    }
    
    .brochure-iframe {
        height: 400px;
    }
}
