* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0F111F;
    background-color: #F3F5F9;
}

/* =========================================
   Navbar
   ========================================= */
header {
    background-color: #0F111F;
    color: #F3F5F9;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(15, 17, 31, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F3F5F9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #F3F5F9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D7D6D8;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    background: linear-gradient(135deg, #0F111F 0%, #1a1d2e 100%);
    color: #F3F5F9;
    padding: 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Animações de Fundo Flutuantes */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 50%, #25D366, #0F111F);
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 70% 60%, #FF8C00, #0F111F);
    bottom: -80px;
    right: -80px;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Coluna Esquerda - WhatsApp */
.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-left::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-content-left {
    text-align: left;
    animation: fadeInLeft 1s ease-in;
    position: relative;
    z-index: 1;
}

.hero-content-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #F3F5F9;
}

.hero-content-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(243, 245, 249, 0.9);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

/* Coluna Direita - GLPI */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-in;
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.glpi-container {
    background: #F3F5F9;
    border-radius: 15px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 50px rgba(15, 17, 31, 0.2);
    text-align: center;
    border: 2px solid #D7D6D8;
    position: relative;
    z-index: 1;
}

.glpi-container h2 {
    font-size: 1.8rem;
    color: #0F111F;
    margin-bottom: 0.5rem;
}

.glpi-container p {
    color: #0F111F;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.glpi-button {
    display: inline-block;
    background: linear-gradient(135deg, #0F111F 0%, #1a1d2e 100%);
    color: #F3F5F9;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #D7D6D8;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.glpi-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 17, 31, 0.3);
    background: linear-gradient(135deg, #1a1d2e 0%, #0F111F 100%);
    border-color: #F3F5F9;
}

/* =========================================
   Animations
   ========================================= */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(0, -50px) scale(1);
    }
    75% {
        transform: translate(-30px, -30px) scale(0.95);
    }
}

@keyframes borderRotate {
    0% { box-shadow: 0 0 0 3px #0F111F, inset 0 0 0 3px #FF8C00, 0 8px 25px rgba(255, 140, 0, 0.4); }
    25% { box-shadow: 0 0 0 3px #0F111F, inset 0 0 0 3px #FF8C00, 8px 0 25px rgba(255, 140, 0, 0.4); }
    50% { box-shadow: 0 0 0 3px #0F111F, inset 0 0 0 3px #FF8C00, 0 -8px 25px rgba(255, 140, 0, 0.4); }
    75% { box-shadow: 0 0 0 3px #0F111F, inset 0 0 0 3px #FF8C00, -8px 0 25px rgba(255, 140, 0, 0.4); }
    100% { box-shadow: 0 0 0 3px #0F111F, inset 0 0 0 3px #FF8C00, 0 8px 25px rgba(255, 140, 0, 0.4); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

@keyframes instagramGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        background-position: -100% 0;
    }
    to {
        background-position: 0 0;
    }
}

/* =========================================
   About Section
   ========================================= */
.about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F3F5F9;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0F111F;
    text-align: center;
}

.about-content {
    line-height: 1.8;
    color: #0F111F;
}

.about-content h3 {
    font-size: 1.5rem;
    color: #0F111F;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-content h4 {
    font-size: 1.2rem;
    color: #0F111F;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1rem;
}

.about-closing {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #D7D6D8;
    border-left: 4px solid #0F111F;
    font-size: 1.05rem;
    border-radius: 5px;
    color: #0F111F;
}

/* =========================================
   Services Section (Carousel)
   ========================================= */
.services {
    background-color: #F3F5F9;
    padding: 4rem 2rem;
}

.services h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #0F111F;
}

.services-intro {
    text-align: center;
    color: #0F111F;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-carousel-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.services-carousel-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(15, 17, 31, 0.1);
}

.carousel-arrow {
    position: static;
    transform: none;
    background-color: #0F111F;
    color: #F3F5F9;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background-color: #1a1d2e;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(15, 17, 31, 0.4);
}

.carousel-arrow-left { order: -1; }
.carousel-arrow-right { order: 1; }

/* Container do Scroll */
.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 3rem 2rem 4rem 2rem; /* Espaço extra para sombra e animação */
    background: linear-gradient(90deg, #F3F5F9 0%, white 50%, #F3F5F9 100%);
    scroll-snap-type: x mandatory;
    
    /* Esconde scrollbar Firefox */
    scrollbar-width: none; 
}

/* Esconde scrollbar Chrome/Safari */
.services-carousel::-webkit-scrollbar {
    display: none;
}

/* Cards Individuais */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #D7D6D8;
    box-shadow: 0 8px 25px rgba(15, 17, 31, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.5s ease, color 0.5s ease;
    text-align: left;
    min-width: 320px;
    flex-shrink: 0;
    height: fit-content;
    position: relative;
    
    /* Funcionalidades adicionadas */
    cursor: pointer;
    scroll-snap-align: center;
    
    /* Esconde barra de rolagem interna do card */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.service-card::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 0px;
}

/* Card Ativo (Laranja) */
.service-card.active {
    background: rgba(15, 17, 31, 0.95);
    backdrop-filter: blur(10px);
    color: #F3F5F9;
    border: 3px solid #FF8C00;
    border-radius: 15px;
    animation: borderRotate 4s linear infinite;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.3);
}

.service-card.active h3,
.service-card.active p,
.service-card.active li {
    color: #F3F5F9;
}

.service-card.active li:before {
    color: #FF8C00;
}

/* Hover no Card */
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(15, 17, 31, 0.2);
    border-color: #0F111F;
    overflow: hidden;
}

/* Tipografia e Listas do Card */
.service-card h3 {
    color: #0F111F;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-card p {
    color: #0F111F;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    color: #0F111F;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0F111F;
    font-weight: bold;
}

/* Indicadores (Bolinhas) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D7D6D8;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    transform: scale(1.2);
}

.indicator.active {
    background-color: #0F111F;
    border-color: #0F111F;
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FD1D1D 0%, #833AB4 25%, #FD1D1D 50%, #FCD34D 75%, #FD1D1D 100%);
    background-size: 300% 300%;
    animation: instagramGradient 15s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Elementos flutuantes de fundo */
.contact::before,
.contact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.contact::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FFFFFF, transparent);
    top: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite;
}

.contact::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFFFFF, transparent);
    bottom: -100px;
    right: -100px;
    animation: float 30s ease-in-out infinite reverse;
}

.contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.instagram-feed {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

.instagram-feed iframe {
    width: 100%;
    height: auto;
    min-height: 600px;
    border: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: #0F111F;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.contact-method span {
    font-size: 2rem;
}

.contact-method div {
    display: flex;
    flex-direction: column;
}

.contact-method strong {
    font-size: 1.1rem;
    color: #0F111F;
}

.contact-method p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0.3rem 0 0 0;
}

/* WhatsApp Contact Method */
.whatsapp-link {
    position: relative;
    overflow: hidden;
}

.whatsapp-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.3), transparent);
    transition: left 0.6s ease;
}

.whatsapp-link:hover {
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(37, 211, 102, 0.15) 50%, #FFFFFF 100%) !important;
    border-color: #25D366 !important;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-link:hover::before {
    left: 100%;
}

.whatsapp-link:hover span {
    animation: pulse-icon 0.6s ease;
}

/* Instagram Contact Method */
.instagram-link-btn {
    position: relative;
    overflow: hidden;
}

.instagram-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 29, 29, 0.3), transparent);
    transition: left 0.6s ease;
}

.instagram-link-btn:hover {
    background: linear-gradient(135deg, #FD1D1D 0%, #833AB4 50%, #FCD34D 100%) !important;
    border-color: #FD1D1D !important;
    box-shadow: 0 15px 40px rgba(253, 29, 29, 0.4) !important;
    color: #FFFFFF !important;
}

.instagram-link-btn:hover::before {
    left: 100%;
}

.instagram-link-btn:hover strong,
.instagram-link-btn:hover p {
    color: #FFFFFF !important;
}

.instagram-link-btn:hover span {
    animation: pulse-icon 0.6s ease;
}

/* Email Contact Method */
.email-link {
    position: relative;
    overflow: hidden;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.3), transparent);
    transition: left 0.6s ease;
}

.email-link:hover {
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(66, 133, 244, 0.15) 50%, #FFFFFF 100%) !important;
    border-color: #4285F4 !important;
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4) !important;
}

.email-link:hover::before {
    left: 100%;
}

.email-link:hover span {
    animation: pulse-icon 0.6s ease;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: #0F111F;
    color: #F3F5F9;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content-left h1 {
        font-size: 2rem;
    }

    .hero-content-left p {
        font-size: 1rem;
    }

    .navbar {
        padding: 0 1rem;
    }

    /* Serviços Responsivo */
    .services {
        padding: 3rem 1rem;
    }

    .services h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .services-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .services-carousel-wrapper {
        gap: 1rem;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .service-card {
        min-width: 280px;
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card li {
        font-size: 0.85rem;
    }

    .carousel-indicators {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Contato em Tablet */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instagram-feed {
        padding: 0.5rem;
    }

    .instagram-feed iframe {
        min-height: 500px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-method {
        padding: 1.2rem;
        gap: 1rem;
    }

    .contact-method span {
        font-size: 1.8rem;
    }
}

/* =========================================
   Tablet (768px - 1024px)
   ========================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instagram-feed iframe {
        min-height: 500px;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1.2rem;
        gap: 1rem;
    }

    .services-carousel-wrapper {
        gap: 1rem;
    }

    .services h2 {
        font-size: 1.8rem;
    }

    .service-card {
        min-width: 290px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-content-left h1 {
        font-size: 1.5rem;
    }

    .hero-content-left p {
        font-size: 0.95rem;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .glpi-container {
        padding: 1.5rem;
    }

    .glpi-container h2 {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 0 0.8rem;
    }

    /* Serviços Ultra Responsivo para Mobile */
    .services {
        padding: 2rem 1rem;
    }

    .services h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .services-intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .services-carousel-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }

    .carousel-arrow-left {
        left: 5px;
        order: 0;
    }

    .carousel-arrow-right {
        right: 5px;
        order: 0;
    }

    .services-carousel-container {
        width: 100%;
        max-width: 100%;
    }

    .services-carousel {
        padding: 2rem 1rem 3rem 1rem;
        gap: 1.5rem;
    }

    .service-card {
        min-width: 85vw;
        max-width: 85vw;
        padding: 1.2rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .service-card ul {
        padding-left: 0;
    }

    .service-card li {
        font-size: 0.8rem;
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .carousel-indicators {
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .about {
        padding: 2rem 1rem;
    }

    .about h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
    }

    .about-content h4 {
        font-size: 1rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .about-closing {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .contact {
        padding: 2rem 1rem;
    }

    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instagram-feed {
        padding: 0.5rem;
    }

    .instagram-feed iframe {
        min-height: 400px;
    }

    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-method span {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .contact-method strong {
        font-size: 1rem;
    }

    .contact-method p {
        font-size: 0.85rem;
    }

    footer {
        padding: 1.5rem;
        font-size: 0.85rem;
    }
}