/* Color Variables */
:root {
    --primary-red: #D60000;
    --secondary-red: #990000;
    --background-gray: #F5F5F5;
    --text-dark: #1A1A1A;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

/* Touch target improvements */
a, button, .btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

html {
    scroll-behavior: smooth;
}

/* Custom Bootstrap Colors */
.text-primary {
    color: var(--primary-red) !important;
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 0, 0, 0.3);
}

/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover {
        transform: none;
        background-color: var(--primary-red);
    }
    
    .btn-primary:active {
        background-color: var(--secondary-red);
        transform: scale(0.98);
    }
}

/* Header Styles */
.custom-navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-red) !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-gray) 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-icon {
    font-size: 15rem;
    color: var(--primary-red);
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.feature-item span {
    font-weight: 500;
}

.cta-button {
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 0, 0, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Advantages Section */
.advantage-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(214, 0, 0, 0.1),
        0 0 50px rgba(214, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 0, 0, 0.1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(214, 0, 0, 0.2),
        0 0 60px rgba(214, 0, 0, 0.1);
    border-color: rgba(214, 0, 0, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--white);
}

.advantage-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    margin-right: 10px;
}

.service-icon {
    font-size: 8rem;
    color: var(--primary-red);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

/* Contact Section */
.contact-info {
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-info h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 25px;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: var(--secondary-red);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-brand h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
}

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

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

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

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

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

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

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    opacity: 0.8;
    margin: 0;
}

/* Modern Floating WhatsApp Button */
.whatsapp-modern-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    animation: whatsapp-float 6s ease-in-out infinite;
}

.whatsapp-modern-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25d366 0%, #1ebe5d 50%, #17a54a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 
        0 8px 32px rgba(37, 211, 102, 0.4),
        0 4px 16px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
}

.whatsapp-modern-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 48px rgba(37, 211, 102, 0.5),
        0 8px 24px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: white;
    background: linear-gradient(135deg, #1ebe5d 0%, #17a54a 50%, #128c3a 100%);
}

.whatsapp-modern-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
}

.whatsapp-modern-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whatsapp-modern-label {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.whatsapp-modern-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.whatsapp-modern-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid #25d366;
    animation: whatsapp-modern-pulse 2s infinite;
    pointer-events: none;
}

.whatsapp-modern-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg);
    animation: whatsapp-modern-shine 3s linear infinite;
    pointer-events: none;
}

/* Modern WhatsApp Button Animations */
@keyframes whatsapp-float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-10px);
    }
}

@keyframes whatsapp-modern-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes whatsapp-modern-shine {
    0% { 
        transform: translateX(-100%) translateY(-100%) rotate(45deg); 
    }
    50% { 
        transform: translateX(0%) translateY(0%) rotate(45deg); 
    }
    100% { 
        transform: translateX(100%) translateY(100%) rotate(45deg); 
    }
}

/* Mobile Responsiveness for Modern WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-modern-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-modern-btn {
        min-width: 160px;
        padding: 10px 16px;
    }
    
    .whatsapp-modern-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
        margin-right: 10px;
    }
    
    .whatsapp-modern-label {
        font-size: 0.85rem;
    }
    
    .whatsapp-modern-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-modern-btn {
        min-width: 140px;
        padding: 8px 14px;
    }
    
    .whatsapp-modern-icon {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
        margin-right: 8px;
    }
    
    .whatsapp-modern-label {
        font-size: 0.8rem;
    }
    
    .whatsapp-modern-subtitle {
        font-size: 0.65rem;
    }
}
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Notification Dot with Glow Pulse */
.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    border-radius: 50%;
    border: 2px solid white;
    animation: glow-pulse 2s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.8);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 49;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(255, 255, 255, 0.95);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

@keyframes glow-pulse {
    0%, 50% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 71, 87, 0.8);
    }
    25% { 
        opacity: 0.7; 
        transform: scale(0.9);
        box-shadow: 0 0 5px rgba(255, 71, 87, 0.6);
    }
    75% { 
        opacity: 1; 
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(255, 71, 87, 1);
    }
}

@keyframes ripple-whatsapp {
    to {
        transform: scale(8);
        opacity: 0;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(214, 0, 0, 0.1) 0%,
        rgba(214, 0, 0, 0.7) 70%,
        rgba(214, 0, 0, 0.9) 100%
    );
    display: flex;
    align-items: end;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile optimizations for gallery */
@media (max-width: 768px) {
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(214, 0, 0, 0.5) 60%,
            rgba(214, 0, 0, 0.8) 100%
        );
    }
    
    .gallery-content {
        transform: translateY(0);
    }
}

/* About Section Styles */
.about-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(214, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(214, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.company-image img {
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(214, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.company-image img:hover {
    transform: scale(1.02);
}

/* Mobile touch optimizations for WhatsApp button */
@media (hover: none) and (pointer: coarse) {
    .whatsapp-float {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .whatsapp-float:hover {
        transform: scale(1);
        background: linear-gradient(135deg, #25d366 0%, #20ba5a 50%, #1ba952 100%);
        animation: whatsapp-pulse 3s ease-in-out infinite;
    }
    
    .whatsapp-float:hover i {
        animation: none;
    }
    
    .whatsapp-float:active {
        background: linear-gradient(135deg, #20ba5a 0%, #1ba952 50%, #16a085 100%);
        transform: scale(0.95);
        box-shadow: 
            0 5px 15px rgba(37, 211, 102, 0.6),
            0 2px 8px rgba(37, 211, 102, 0.4);
    }
}

/* Premium Glass Effects */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.shadow-premium {
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.1);
}

.shadow-glow {
    box-shadow: 
        0 0 20px rgba(214, 0, 0, 0.15),
        0 0 40px rgba(214, 0, 0, 0.1),
        0 0 80px rgba(214, 0, 0, 0.05);
}

/* Shimmer Effects */
.text-shimmer {
    background: linear-gradient(90deg, var(--primary-red), #ff4444, var(--primary-red));
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.premium-shimmer {
    position: relative;
    overflow: hidden;
}

.premium-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer-slide 3s ease-in-out infinite;
}

.gradient-shift {
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red), var(--primary-red));
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite;
}

/* Micro Interactions */
.micro-bounce {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.micro-bounce:hover {
    transform: translateY(-8px) scale(1.02);
}

.floating-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:active::after {
    width: 300px;
    height: 300px;
}

/* Animations */
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes shimmer-slide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile-First Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .advantage-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .service-price {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-price .price {
        font-size: 2.2rem;
        display: block;
        margin-top: 0.5rem;
    }
    
    .service-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-features {
        margin-bottom: 2rem;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-icon {
        font-size: 6rem;
        margin-top: 2rem;
    }
    
    .service-icon {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .advantage-icon i {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 1.5rem 0;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 350px;
        padding: 15px 30px;
        font-size: 1.1rem;
        margin: 0 auto 1rem;
        display: block;
    }
    
    .feature-item {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-brand,
    .footer h6 {
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card,
    .advantage-card,
    .contact-info {
        padding: 1.5rem 1rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-price .price {
        font-size: 2rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
    
    .advantage-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .advantage-card p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 1rem;
        max-width: 300px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .contact-item {
        padding: 1rem 0;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-features .row {
        justify-content: center;
    }
    
    .hero-features .col-6 {
        flex: 0 0 auto;
        width: auto;
        margin: 0 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .service-price .price {
        font-size: 1.8rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    
    .advantage-card,
    .service-card,
    .contact-info {
        padding: 1.2rem 0.8rem;
    }
}
