/*
Theme Name: Panasol Theme
Theme URI: https://panasol.com.py
Author: Panasol
Description: Tema personalizado para servicios contables
Version: 1.0
*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.hero {
    background: #0b1f3a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn-primary {
    background: #25D366;
    color: #fff;
}

.btn-secondary {
    background: #ffffff;
    color: #0b1f3a;
}
.segmentacion {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}

.segmentacion h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.segmentos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.segmento {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    width: 300px;
}

.segmento h3 {
    margin-bottom: 15px;
}

.segmento p {
    margin-bottom: 20px;
}
.problemas {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.problemas h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.problemas-lista {
    max-width: 700px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.problema {
    background: #f9f9f9;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #ff4d4d;
    border-radius: 4px;
}

.problemas-cta {
    margin-top: 20px;
}
/* SERVICIOS */
.servicios {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}

.servicios h2 {
    margin-bottom: 40px;
}

.servicios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.servicio {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    width: 250px;
}

/* DIFERENCIAL */
.diferencial {
    padding: 60px 0;
    text-align: center;
}

.diferencial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.diferencial-item {
    width: 250px;
}

/* CTA FINAL */
.cta-final {
    background: #0b1f3a;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 15px;
}

.cta-final p {
    margin-bottom: 25px;
}
/* HEADER */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #0b1f3a;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav a:hover {
    color: #0b1f3a;
}

.header-cta .btn {
    padding: 10px 16px;
}
/* FOOTER */
.site-footer {
    background: #0b1f3a;
    color: #ffffff;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.nav a.active {
    color: #0b1f3a;
    border-bottom: 2px solid #0b1f3a;
    padding-bottom: 3px;
}
.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.servicio,
.segmento,
.problema {
    transition: all 0.2s ease;
}

.servicio:hover,
.segmento:hover {
    transform: translateY(-5px);
}
@media (max-width: 768px) {

    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

}
.blog {
    padding: 60px 0;
}

.blog h1 {
    text-align: center;
    margin-bottom: 40px;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.post-card {
    width: 300px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

.post-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.post-card a {
    text-decoration: none;
    color: #0b1f3a;
}
.single-post {
    padding: 60px 0;
}

.single-post h1 {
    margin-bottom: 20px;
}

.post-content {
    max-width: 700px;
    line-height: 1.6;
}