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

:root {
    --primary-blue: #003B5C;
    --secondary-blue: #0066A1;
    --accent-green: #FF6B35;
    --accent-orange: #FF6B35;
    --dark-gray: #2C3E50;
    --light-gray: #F5F7FA;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-green);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent-green);
    transform: translateY(-2px);
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
    margin-top: 8px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    transition: width 0.3s;
}

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

.main-nav a:hover {
    color: var(--accent-orange);
}

.hero-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 2000/640;
    overflow: hidden;
    background: #f0f2f1; 
	
	 
}

	

@media (max-width: 1024px) {
    .hero-carousel {
        aspect-ratio: 2000 / 640;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        aspect-ratio: 2000 / 640;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        aspect-ratio: 2000 / 640;
    }
}

@media (max-width: 400px) {
    .hero-carousel {
        aspect-ratio: 2000 / 640;
    }
}

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

.carousel-slide.active {
    display: block;
    opacity: 1;
    animation: slideIn 1.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-3d {

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.slide-3d-content {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 0 0 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    z-index: 2;
}

.slide-3d-text {
    animation: slideInLeft 1s ease-out;
    z-index: 3;
    width: 650px;
    max-width: 650px;
    flex-shrink: 0;
    padding-right: 2rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-3d-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.slide-3d-description {
    font-size: 1.3rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 100%;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-3d-badges {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.slide-3d-badges img {
    height: 75px;
    width: auto;
    filter: brightness(1.0) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.slide-3d-badges img:hover {
    transform: scale(1.12) translateY(-4px);
    filter: brightness(1.0) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
}

.slide-3d-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: slideInRight 1s ease-out;
    perspective: 1200px;
    z-index: 3;
    
    flex-grow: 1;
    margin-right: -150px;  
    padding-right: 0;
    overflow: visible;
    height: 100%;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.accessories-3d {
    width: 100%;
    min-width: 900px;
    
    max-width: none !important;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: right center;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.8));
    transform-style: preserve-3d;
    
    transform: translateX(-250px);
    
    animation: subtleFloat 8s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateX(-250px) translateY(0px);
    }
    50% {
        transform: translateX(-250px) translateY(-15px);
    }
}

.slide-3d-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    animation: glow 5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(180deg);
    }
}

.slide-3d-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255, 255, 255, 0.6), transparent);
    background-size: 200% 200%;
    animation: particles 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particles {
    0%, 100% {
        background-position: 0% 0%;
        opacity: 0.7;
    }
    50% {
        background-position: 100% 100%;
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .slide-3d-content {
        padding: 0 0 0 6%;
    }
    
    .slide-3d-text {
        width: 580px;
        max-width: 580px;
        padding-right: 1.5rem;
    }
    
    .slide-3d-title {
        font-size: 4.2rem;
    }
    
    .slide-3d-description {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    .accessories-3d {
        min-width: 800px;
    }
    
    .slide-3d-badges img {
        height: 65px;
    }
}

@media (max-width: 968px) {
    .slide-3d-content {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 3rem;
        text-align: center;
        justify-content: center;
    }
    
    .slide-3d-text {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .slide-3d-image {
        order: 1;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 0;
        justify-content: center;
        width: 100%;
        height: auto;
    }
    
    .slide-3d-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-3d-description {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .slide-3d-badges {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .slide-3d-badges img {
        height: 60px;
    }
    
    .accessories-3d {
        width: 100%;
        min-width: 0;
        max-width: 500px !important;
        max-height: 400px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .slide-3d-content {
        padding: 2.5rem 1.5rem;
        gap: 2.5rem;
    }
    
    .slide-3d-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .slide-3d-image {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .slide-3d-title {
        font-size: 3rem;
    }
    
    .slide-3d-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.8rem;
    }
    
    .slide-3d-badges img {
        height: 55px;
    }
    
    .accessories-3d {
        max-width: 420px !important;
    }
}

@media (max-width: 576px) {
    
    .hero-carousel {
        aspect-ratio: 2000 / 710;
        min-height: unset !important;
        padding-bottom: 0;
    }
    
    .slide-3d-content {
        padding: 2.5rem 1.5rem !important;
        gap: 2.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .slide-3d-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 2 !important;
    }
    
    .slide-3d-image {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 1 !important;
        justify-content: center !important;
    }
    
    .slide-3d-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
    
    .slide-3d-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem;
    }
    
    .slide-3d-badges {
        gap: 1.2rem;
        display: flex !important;
        justify-content: center !important;
    }
    
    .slide-3d-badges img {
        height: 45px !important;
    }
    
    .accessories-3d {
        max-width: 380px !important;
        width: 100% !important;
        
        object-fit: contain;
    }
}

@media (max-width: 400px) {
    .hero-carousel {
        aspect-ratio: 2000 / 710;
        min-height: unset !important;
    }
    
    .slide-3d-content {
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .slide-3d-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .slide-3d-image {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .slide-3d-title {
        font-size: 2rem !important;
    }
    
    .slide-3d-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .slide-3d-badges {
        gap: 1rem;
    }
    
    .slide-3d-badges img {
        height: 40px !important;
    }
    
    .accessories-3d {
        max-width: 320px !important;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .carousel-dots {
        bottom: 15px;
        gap: 8px;
        padding: 8px 15px;
    }
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

@media (max-width: 768px) {
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.carousel-dot.active {
    background: var(--accent-orange);
    border-color: var(--white);
    transform: scale(1.3);
    width: 35px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .carousel-dot.active {
        width: 20px;
    }
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.carousel-arrow:hover {
    background: rgba(255, 107, 53, 0.9);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
}

.sectors-section {
    padding: 4.5rem 0;
    background: var(--light-gray);
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

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

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

.sector-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    cursor: pointer;
}

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

.sector-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.sector-card:hover .sector-image {
    transform: scale(1.08);
}

.sector-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,59,92,0.3) 40%,
        rgba(0,59,92,0.7) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.sector-card:hover .sector-image::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,59,92,0.4) 40%,
        rgba(0,59,92,0.8) 100%
    );
}

.sector-content {
    padding: 1.5rem;
    position: relative;
}

.sector-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sector-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    min-height: 42px;
}

.sector-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 700;
    margin-top: 0.3rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sector-btn:hover {
    color: var(--accent-orange);
    gap: 1rem;
}

.sector-btn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.sector-btn:hover i {
    transform: translateX(5px);
}

.sector-more {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.sector-more::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sector-content-center {
    text-align: center;
    color: var(--white);
    padding: 1.8rem;
    position: relative;
    z-index: 1;
}

.sector-content-center i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

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

.sector-more .sector-title {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.sector-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    margin-top: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.9rem 1.8rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.sector-btn-white:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.sector-btn-white i {
    transition: transform 0.3s ease;
}

.sector-btn-white:hover i {
    transform: translateX(5px);
}

.whatsapp-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 4rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.whatsapp-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.whatsapp-text {
    flex: 1;
    min-width: 300px;
}

.whatsapp-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.whatsapp-text p {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 600px;
}

.whatsapp-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-whatsapp,
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.3rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.btn-call {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-call:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-call i {
    font-size: 1.1rem;
}

.catalog-section {
    padding: 5.5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.catalog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/fondo2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.catalog-section .container {
    position: relative;
    z-index: 1;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4.5rem;
    align-items: center;
}

.catalog-image {
    border-radius: 15px;
    overflow: visible;
    max-width: 400px;
    width: 100%;
    position: relative;
    perspective: 1000px;
}

.catalog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 10px 20px rgba(0,0,0,0.1),
        -10px 20px 30px rgba(0,59,92,0.1);
}

.catalog-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, rgba(0,102,161,0.1) 0%, rgba(255,107,53,0.1) 100%);
    border-radius: 15px;
    z-index: -1;
    transition: all 0.4s ease;
}

.catalog-image:hover img {
    transform: translateY(-8px) rotateY(-5deg) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.2),
        0 15px 30px rgba(0,0,0,0.15),
        -15px 25px 40px rgba(0,59,92,0.15);
}

.catalog-image:hover::before {
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
}

.catalog-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.catalog-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.9;
}

.catalog-content p:last-of-type {
    margin-bottom: 2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.4rem 3rem;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    position: relative;
}

.btn-download::after {
    content: 'Descarga  - PDF';
    position: absolute;
    bottom: -25px;
    left: 0;
    font-size: 0.75rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.7;
}

.btn-download:hover {
    background: var(--secondary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,102,161,0.4);
}

.btn-download i {
    font-size: 1.2rem;
    animation: downloadBounce 2s ease-in-out infinite;
}

@keyframes downloadBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-orange) 0%, 
        var(--secondary-blue) 50%, 
        var(--accent-orange) 100%
    );
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 55px;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.footer-about p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-about-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 2.5rem;
    max-width: 550px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.footer-about-certs img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.0) contrast(1.15) saturate(1.1);
    opacity: 0.95;
}

.footer-about-certs img:hover {
    transform: scale(1.12) translateY(-4px);
    filter: brightness(1) contrast(1.2) saturate(1.2);
    opacity: 1;
}

.footer-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-orange);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
}
.footer-contact a:hover {
    color: #ED7D31 !important;
    text-decoration: underline !important;
}
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
	 text-align: center;
}

.created-by {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.created-by a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.created-by a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .catalog-image {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .carousel-content h1 {
        font-size: 2.5rem;
    }

    .carousel-content p {
        font-size: 1.1rem;
    }

    .carousel-certifications {
        gap: 1.5rem;
        justify-content: center;
    }

    .carousel-certifications img {
        height: 100px;
    }

    .sectors-section {
        padding: 3.5rem 0;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sector-image {
        height: 180px;
    }

    .sector-content {
        padding: 1.3rem;
    }

    .sector-more {
        min-height: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .whatsapp-cta {
        padding: 3rem 0;
    }

    .whatsapp-content {
        text-align: center;
        justify-content: center;
    }

    .whatsapp-text h2 {
        font-size: 2.2rem;
    }

    .whatsapp-text p {
        font-size: 1.05rem;
    }

    .whatsapp-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn-whatsapp,
    .btn-call {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    .catalog-section {
        padding: 4rem 0;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .catalog-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .catalog-content h2 {
        font-size: 2.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-about-certs {
        justify-content: center;
        margin: 2rem auto;
    }

    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-certifications img {
        height: 80px;
    }

    .sectors-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sector-image {
        height: 170px;
    }

    .sector-content {
        padding: 1.2rem;
    }

    .sector-title {
        font-size: 1.3rem;
    }

    .sector-content p {
        font-size: 0.9rem;
        min-height: auto;
    }

    .sector-more {
        min-height: 260px;
    }

    .sector-content-center {
        padding: 1.5rem;
    }

    .sector-content-center i {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }

    .sector-more .sector-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .sector-btn-white {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .whatsapp-text h2 {
        font-size: 1.8rem;
    }

    .whatsapp-text p {
        font-size: 1rem;
    }

    .whatsapp-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-whatsapp,
    .btn-call {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .catalog-image {
        max-width: 280px;
    }

    .catalog-image:hover img {
        transform: translateY(-5px) rotateY(-3deg) rotateX(3deg);
    }

    .catalog-content h2 {
        font-size: 2rem;
    }

    .catalog-content p {
        font-size: 1rem;
    }

    .btn-download {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .btn-download::after {
        bottom: -22px;
        font-size: 0.7rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }

    .footer-about-certs {
        justify-content: center;
        margin: 2rem auto;
        gap: 2rem;
        max-width: 100%;
    }

    .footer-about-certs img {
        height: 55px;
    }
}

.catalog-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.catalog-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-modal {
    background: white;
    border-radius: 20px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.catalog-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
    z-index: 10;
}

.catalog-modal-close:hover {
    background: var(--accent-orange);
    color: white;
    transform: rotate(90deg);
}

.catalog-modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #003B5C 0%, #0066A1 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.catalog-modal-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.catalog-modal-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.catalog-modal-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.catalog-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.catalog-card:hover::before {
    transform: scaleX(1);
}

.catalog-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d86a2a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(237, 125, 49, 0.3);
    transition: all 0.3s;
}

.catalog-card:hover .catalog-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.catalog-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.catalog-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.catalog-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.catalog-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.catalog-features i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

.catalog-download-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d86a2a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(237, 125, 49, 0.3);
}

.catalog-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 125, 49, 0.4);
}

.catalog-download-btn i {
    margin-right: 0.5rem;
}

.catalog-modal-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.catalog-modal-footer p {
    color: #666;
    margin: 0;
}

.catalog-modal-footer i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.catalog-modal-footer a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.catalog-modal-footer a:hover {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .catalog-modal-overlay {
        padding: 1rem;
    }
    
    .catalog-modal {
        margin: 1rem;
    }
    
    .catalog-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .catalog-modal-header h2 {
        font-size: 2rem;
    }
    
    .catalog-modal-header i {
        font-size: 2.5rem;
    }
    
    .catalog-modal-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .catalog-card {
        padding: 1.5rem;
    }
}

.catalog-section .btn-download {
    cursor: pointer;
    border: none;
    font-family: 'Work Sans', sans-serif;
}

.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-blue);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu-toggle.active span {
    background: var(--white);
}

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

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

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

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 2rem 2rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        overflow-y: auto;
        gap: 0;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        width: 100%;
        padding: 1.2rem 1rem;
        border-bottom: 1px solid #e0e0e0;
        font-size: 1.1rem;
        color: var(--primary-blue);
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .main-nav a:first-child {
        border-top: 1px solid #e0e0e0;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        background: var(--light-gray);
        padding-left: 1.5rem;
        color: var(--accent-orange);
    }
    
    
    .mobile-menu-close {
        position: absolute;
        top: 30px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1003;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--primary-blue);
        border-radius: 3px;
    }
    
    .mobile-menu-close::before {
        transform: rotate(45deg);
    }
    
    .mobile-menu-close::after {
        transform: rotate(-45deg);
    }
    
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1001;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .header-content {
        justify-content: space-between;
        position: relative;
    }
    
    
    .logo {
        height: 35px;
    }
    
    
    body.menu-open .mobile-menu-toggle span {
        background: var(--white);
    }
}

body.menu-open {
    overflow: hidden;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.main-nav.active {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 968px) {
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999 !important;
    }
    
    .mobile-menu-overlay.active {
        display: block !important;
    }
    
    
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #FFFFFF !important;
        flex-direction: column !important;
        padding: 80px 0 0 0 !important;
        box-shadow: -5px 0 25px rgba(0,0,0,0.2) !important;
        transition: right 0.4s ease !important;
        z-index: 1000 !important;
        gap: 0 !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        overflow-y: auto !important;
    }
    
    .main-nav.active {
        right: 0 !important;
    }
    
    
    .main-nav a {
        width: 100% !important;
        padding: 15px 25px !important;
        margin: 0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
        font-size: 14px !important;
        color: #003B5C !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        text-align: left !important;
        background: #FFFFFF !important;
        position: relative !important;
        z-index: 1001 !important;
        pointer-events: auto !important;
    }
    
    .main-nav a::after {
        display: none !important;
    }
    
    .main-nav a:hover,
    .main-nav a:active,
    .main-nav a:focus {
        background: #F5F7FA !important;
        padding-left: 35px !important;
        color: #FF6B35 !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        z-index: 1002 !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .carousel-content h1 {
        font-size: 2.5rem;
    }

    .carousel-content p {
        font-size: 1.1rem;
    }

    .carousel-certifications {
        gap: 1.5rem;
    }

    .carousel-certifications img {
        height: 100px;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sector-image {
        height: 180px;
    }
}

@media (max-width: 968px) {
    .whatsapp-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .whatsapp-text {
        min-width: 100%;
    }
    
    .whatsapp-text h2 {
        font-size: 2.2rem;
    }
    
    .whatsapp-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .catalog-content {
        padding: 0 1rem;
    }
    
    .catalog-container {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    
    .whatsapp-cta {
        padding: 3rem 0;
    }
    
    .whatsapp-text h2 {
        font-size: 2rem;
    }
    
    .whatsapp-text p {
        font-size: 1rem;
    }
    
    .btn-whatsapp,
    .btn-call {
        padding: 1.1rem 1.8rem;
        font-size: 1rem;
    }
    
    
    .catalog-section {
        padding: 4rem 0;
    }
    
    .catalog-content h2 {
        font-size: 2rem;
    }
    
    .catalog-content p {
        font-size: 1rem;
    }
    
    .catalog-3d-cover {
        width: 280px;
        height: 370px;
    }
}

@media (max-width: 576px) {
    
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.8rem;
    }
    
    .contact-info a {
        gap: 0.3rem;
    }
    
    .social-icons {
        gap: 0.6rem;
        justify-content: center;
    }
    
    .social-icons a {
        font-size: 0.95rem;
    }
    
    
    .header-content {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        height: 32px;
    }
    
    
    .hero-carousel {
        aspect-ratio: 2000 / 710;
    }
    
    
    .sectors-section {
        padding: 3rem 0;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
    }
    
    .sector-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .sector-image {
        height: 200px;
    }
    
    .sector-content {
        padding: 1.2rem;
    }
    
    .sector-title {
        font-size: 1.3rem;
    }
    
    .sector-content p {
        font-size: 0.9rem;
    }
    
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    
    .whatsapp-cta {
        padding: 2.5rem 1rem;
    }
    
    .whatsapp-text h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-text p {
        font-size: 0.95rem;
    }
    
    .whatsapp-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-whatsapp,
    .btn-call {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    
    .catalog-section {
        padding: 3rem 0;
    }
    
    .catalog-container {
        padding: 2rem 1rem;
        flex-direction: column;
        gap: 2rem;
    }
    
    .catalog-content {
        text-align: center;
    }
    
    .catalog-content h2 {
        font-size: 1.8rem;
    }
    
    .catalog-content p {
        font-size: 0.9rem;
    }
    
    .catalog-content ul {
        text-align: left;
    }
    
    .btn-download {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .catalog-3d-cover {
        width: 240px;
        height: 320px;
        margin: 0 auto;
    }
    
    
    .main-footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col h3 {
        font-size: 1.1rem;
    }
    
    .footer-col p,
    .footer-col a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .logo {
        height: 28px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sector-title {
        font-size: 1.2rem;
    }
    
    .sector-image {
        height: 180px;
    }
    
    .whatsapp-text h2 {
        font-size: 1.6rem;
    }
    
    .catalog-content h2 {
        font-size: 1.6rem;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 0.3rem;
    }
    
    .carousel-next {
        right: 0.3rem;
    }
    
    .catalog-3d-cover {
        width: 200px;
        height: 270px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-carousel {
        aspect-ratio: 2000 / 710;
    }
    
    .whatsapp-cta {
        padding: 2rem 0;
    }
    
    .catalog-section {
        padding: 2rem 0;
    }
}