/* Reset y base */
.gestto-servicios-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.gestto-servicios-wrapper {
    font-family: 'Uni Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: #FFFFFF;
    color: #262626;
    line-height: 1.5;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}
/* Tipografías */
.gestto-servicios-wrapper h1,
.gestto-servicios-wrapper h2,
.gestto-servicios-wrapper h3,
.gestto-servicios-wrapper .btn,
.gestto-servicios-wrapper .logo-text {
    font-family: 'MADE TOMMY', 'Poppins', 'Montserrat', sans-serif;
    font-weight: bold;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 70px 0;
}
.section-title {
    font-size: 2.2rem;
    color: #0093AD;
    margin-bottom: 16px;
    font-weight: bold;
    letter-spacing: -0.3px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6A8085;
    max-width: 700px;
    margin-bottom: 48px;
}
/* Botones */
.btn-primary {
    display: inline-block;
    background: #20A537;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.btn-primary:hover {
    background: #16802b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32,165,55,0.25);
}
/* Hero */
.hero-servicios {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 40px 0 20px;
}
.hero-content {
    flex: 1;
}
.hero-badge {
    color: #20A537;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}
.hero-servicios h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #0093AD;
    margin-bottom: 20px;
}
.hero-servicios p {
    font-size: 1.2rem;
    color: #4a5b60;
    margin-bottom: 32px;
}
.hero-logo {
    flex: 0 0 240px;
    text-align: center;
    transition: transform 0.3s ease;
    margin: 0;
}
.hero-logo:hover {
    transform: scale(1.02);
}
.hero-logo img {
    max-width: 100%;
    height: auto;
}
/* Tarjetas de servicios */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 40px 0;
}
.service-card {
    flex: 1 1 280px;
    background: #F9FCFC;
    border-radius: 32px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    border: 1px solid #e0ecee;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0,147,173,0.15);
    border-color: #0093AD40;
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0093AD10, #20A53710);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, #0093AD20, #20A53720);
    transform: scale(1.05);
}
.service-icon svg {
    width: 44px;
    height: 44px;
    stroke: #0093AD;
    stroke-width: 1.5;
    fill: none;
}
.service-card h3 {
    font-size: 1.5rem;
    color: #0093AD;
    margin-bottom: 16px;
}
.service-card p {
    color: #4a5b60;
    font-size: 0.95rem;
}
/* Tratamientos */
.treatments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0;
}
.treatment-item {
    flex: 1 1 200px;
    background: #FFFFFF;
    border: 1px solid #e0ecee;
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #0093AD;
}
.treatment-item strong {
    color: #0093AD;
    font-size: 1.1rem;
}
/* Desechos */
.waste-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin: 32px 0;
}
.waste-item {
    background: #F9FCFC;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    border-left: 3px solid #20A537;
    transition: all 0.2s;
}
.waste-item:hover {
    background: #eef2f2;
    transform: translateX(4px);
}
.waste-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #6A8085;
}
/* Documentación */
.docs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 32px 0;
}
.doc-card {
    flex: 1 1 200px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0ecee;
    transition: all 0.3s;
}
.doc-card:hover {
    transform: translateY(-5px);
    border-color: #0093AD;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.doc-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.doc-card h3 {
    font-size: 1rem;
    color: #0093AD;
    margin-bottom: 8px;
}
.doc-card p {
    font-size: 0.9rem;
    color: #4a5b60;
}
/* Licencia */
.licencia {
    background: #F9FCFC;
    border-left: 6px solid #20A537;
    padding: 28px;
    border-radius: 24px;
    margin: 32px 0;
    transition: all 0.3s ease;
}
.licencia:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.licencia-titulo {
    font-weight: bold;
    color: #0093AD;
}
/* Aliados */
.allies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}
.ally-item {
    flex: 0 0 160px;
    text-align: center;
    background: white;
    padding: 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.ally-item:hover {
    transform: scale(1.05);
    border-color: #0093AD30;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.ally-item img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
}
/* CTA final */
.cta-final {
    background: #0093AD0c;
    text-align: center;
    border-radius: 48px;
    padding: 56px 32px;
    margin: 40px 0;
    transition: all 0.3s ease;
}
.cta-final:hover {
    background: #0093AD14;
    transform: scale(0.99);
}
.cta-titulo {
    font-size: 2rem;
    color: #0093AD;
    margin-bottom: 16px;
}
.cta-subtitulo {
    margin: 16px 0 24px;
    font-size: 1.1rem;
    color: #4a5b60;
}
.cta-boton {
    background: #20A537;
}
/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .hero-servicios h1 { font-size: 2.2rem; }
    .services-grid { gap: 24px; }
    .waste-grid { grid-template-columns: 1fr; }
    .cta-titulo { font-size: 1.6rem; }
}