/* ===== CSS VARIABLES & RESET ===== */
:root {
    --bg-dark: #0B0B0B;
    --bg-charcoal: #131313;
    --bg-medium: #1A1A1A;
    --text-white: #FFFFFF;
    --text-light: #D1D1D1;
    --text-muted: #888888;
    --steel-gray: #3A3A3A;
    --steel-light: #5A5A5A;
    --accent-gold: #EA580C;      /* naranja logo */
    --accent-gold-hover: #F97316;/* hover naranja más claro */
    --accent-blue: #2563EB;      /* azul logo */
    --font-main: 'Barlow', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --max-width: 1200px;
    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: var(--navbar-height);
    transition: background var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.97);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: rgba(255,255,255,0.08); /* sutil resalte */
    border-radius: 6px;
    padding: 4px 10px;
}

.logo-img {
    width: 50px;          /* o el tamaño que necesites */
    height: auto;
    margin-right: 12px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 6px;
    transition: color var(--transition-fast);
}

.lang-btn.active-lang {
    color: var(--accent-gold);
}

.lang-btn:hover {
    color: var(--text-white);
}

.lang-divider {
    color: var(--steel-gray);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 30%, #1a1a1a 60%, #222 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 110, 142, 0.06) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    padding: 18px 44px;
    font-size: 1rem;
}

.btn-gold:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.center-btn {
    text-align: center;
    margin-top: 48px;
}

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.center-tag {
    text-align: center;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-white);
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 120px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.intro-image {
    position: relative;
    border-radius: 12px;
}



@keyframes shimmer {
    100% { left: 100%; }
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px; /* si quieres esquinas redondeadas */
}

.service-detail-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* ===== IMAGEN DE SERVICIO: tamaño fijo + 16:9 centrada ===== */
.service-detail-image {
    display: flex;
    justify-content: center;   /* centra horizontalmente el contenedor de la imagen */
    align-items: center;
}

.img-fixed-ratio {
    width: 100%;
    max-width: 500px;          /* ancho máximo fijo (cambia este valor si quieres) */
    aspect-ratio: 16 / 9;      /* ¡fuerza la proporción 16:9! */
    overflow: hidden;          /* recorta la imagen si no encaja */
    border-radius: 4px;
    background: var(--bg-medium); /* fondo de respaldo si la imagen no carga */
}

.service-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;         /* rellena el contenedor 16:9 recortando lo que sobre */
    object-position: center;   /* centra el recorte */
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.large-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 4px;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview-section {
    padding: 100px 0;
    background: var(--bg-charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-medium);
    padding: 40px 28px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    cursor: default;
}

.service-card:hover {
    border-left: 3px solid var(--accent-blue);  
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== BEFORE/AFTER SLIDER ===== */
.before-after-section {
    padding: 120px 0;
}

.before-after-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.img-before,
.img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-after {
    clip-path: inset(0 0 0 50%);
}

.ba-placeholder {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.img-before .ba-placeholder {
    background: #3a3a3a;
}

.after-bg {
    background: #2a3a2a !important;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent-gold);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-gold);
}

.img-before img, 
.img-after img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto hace que la imagen llene el espacio sin deformarse */
    display: block;
}

.handle-arrows {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #222);
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-banner p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-charcoal);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.page-hero-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}


/* ===== SERVICES DETAIL ===== */
.services-detail-section {
    padding: 100px 0;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
}

.service-detail-row.reverse .service-detail-image {
    order: -1;
}

.service-detail-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 12px 0 20px;
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* ===== ABOUT ===== */
.about-story-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 12px 0 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 500px;        
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 16 / 9;     
}

.values-section {
    padding: 100px 0;
    background: var(--bg-charcoal);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: var(--bg-medium);
    padding: 36px 28px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.3);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.2);
    margin-bottom: 12px;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 12px 0 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 2px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-container {
    background: var(--bg-charcoal);
    padding: 40px 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0d0d0d;
    padding: 64px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: var(--bg-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 1.8rem;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.7); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .intro-grid,
    .about-grid,
    .contact-grid,
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-row.reverse .service-detail-image {
        order: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.98);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform var(--transition-medium);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .before-after-slider {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-container {
        padding: 28px 20px;
    }

    .large-placeholder {
        height: 280px;
    }

    .logo-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        font-size: 1.4rem;
    }

    .before-after-slider {
        height: 220px;
    }
}