:root {
    --primary-color: #1a42bb;
    --secondary-color: #1a42bb;
    --accent-color: #1a42bb;
    --yellow-color: #fcd21d;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-gray: #e5e7eb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --border-radius: 12px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.4 !important;
}

html,
body,
#page-container,
#et-main-area,
#main-content {
    background-color: var(--bg-light) !important;
}

#pagination {
    margin: 0;
    padding: 0;
    text-align: center
}
#pagination li {
    display: inline
}
#pagination li a {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: #000
}

#pagination li a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}
#pagination li a.active {
    background-color: #070042;
    color: #fff
}
#pagination li a:hover:not(.active) {
    background-color: #ddd;
}

.et_pb_salvattore_content_inner .et_pb_post{
    margin: 0 !important;
}
.et_pb_salvattore_content_inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}


.btn {
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    border-radius: 13px;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: #059669;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.disclaimer-banner {
    background-color: var(--warning-color);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.value-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #000;
    font-size: 19px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
}

.value-icon {
    background-color: #FEF9E7 !important;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
}

.value-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 700;
}

.value-card p {
    color: #000;
    font-size: 16px;
}

.empresas-section {
    padding: 80px 0;
}

.empresas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.empresa-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.empresa-card:hover {
    box-shadow: var(--shadow-lg);
}

.empresa-logo {
    width: 140px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.empresa-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.empresa-rating {
    color: var(--warning-color);
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.empresa-reviews {
    color: #000;
    font-size: 15px;
    margin-bottom: 15px;
}

.empresa-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
}

.proceso-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 1200px) {
    .proceso-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.proceso-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--yellow-color);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.proceso-step h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.proceso-step p {
    color: #000;
    font-size: 14px;
}

.opiniones-section {
    padding: 40px 0;
}

.opiniones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.opinion-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--accent-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.opinion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.opinion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.opinion-author-info {
    flex: 1;
}

.opinion-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.opinion-date {
    color: #000;
    font-size: 13px;
}

.verificado-badge {
    background-color: var(--yellow-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.opinion-rating {
    color: var(--warning-color);
    font-size: 22px;
    letter-spacing: 3px;
}

.opinion-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 18px;
}

.opinion-text {
    color: #000;
    font-size: 15px;
    margin-bottom: 20px;
}

.opinion-empresa {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-gray);
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.opinion-empresa strong {
    color: var(--primary-color);
    font-weight: 700;
}

.foro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.foro-topics {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.topic-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s;
}

.topic-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.topic-card.topic-alert {
    border-left-color: var(--danger-color);
    background-color: #fef2f2;
}

.topic-header {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.topic-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.topic-info {
    flex: 1;
}

.topic-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.topic-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #000;
}

.topic-author strong {
    color: var(--text-dark);
    font-weight: 700;
}

.topic-category {
    background-color: var(--bg-gray);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
}

.topic-excerpt {
    color: #000;
    margin-bottom: 18px;
    font-size: 16px;
}

.topic-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 18px;
    border-top: 2px solid var(--bg-gray);
    margin-bottom: 15px;
}

.stat-item {
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.topic-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.topic-link:hover {
    text-decoration: underline;
}

.review-form-section {
    padding: 80px 0;
    background: var(--yellow-color);
}

.review-form-section .wpcf7 .form-select {
    background: transparent;
    border: 1px solid rgba(52, 54, 61, 0.5);
}

.review-form {
    max-width: 800px;
    margin: 50px auto 0;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.wpcf7 .form-group {
    margin-bottom: 30px;
}

.wpcf7 .form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 16px;
}

.wpcf7 .form-label.required::after {
    content: " *";
    color: var(--danger-color);
}

.wpcf7 .form-input,
.wpcf7 .form-textarea,
.wpcf7 .form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.wpcf7 .form-input:focus,
.wpcf7 .form-textarea:focus,
.wpcf7 .form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.wpcf7 .form-textarea {
    min-height: 180px;
    resize: vertical;
}

.rating-input {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.star-input {
    font-size: 36px;
    cursor: pointer;
    color: var(--primary-color);
    transition: color 0.2s;
}

.star-input:hover,
.star-input.active {
    color: var(--warning-color);
}

.wpcf7 .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wpcf7 .form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.wpcf7 .form-checkbox label {
    font-size: 15px;
    color: #000;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
}

.blog-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #000;
    margin-bottom: 18px;
    font-size: 15px;
}

.blog-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

.blog-link:hover {
    text-decoration: underline;
}

.cta-banner {
    background: var(--yellow-color);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #fff;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.footer {
    background-color: #070042;
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section .footer-section__title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-disclaimer {
    background-color: rgba(245, 158, 11, 0.2);
    border-left: 4px solid var(--warning-color);
    padding: 20px;
    margin-top: 25px;
    border-radius: var(--border-radius);
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.header {
    background-color: #070042;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 36px;
}

.logo-text span {
    color: var(--white);
}


.btn-yellow {
    background-color: var(--yellow-color);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--accent-color);
}

.btn-white:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.wpcf7 .wpcf7-list-item,
.wpcf7 .wpcf7-form-control-wrap {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.btn-md {
    min-width: 200px;
    text-align: center;
}

#cmplz-manage-consent .cmplz-manage-consent {
    bottom: 0 !important;
}
.topic-icon img {
    max-width: 50px;
}

.review-form-section .wpcf7-list-item-label,
.review-form-section select,
.review-form-section textarea::placeholder,
.review-form-section input::placeholder,
.review-form-section .form-label,
.review-form-section .section-subtitle {
    color: #fff;
}

.opiniones-section .opiniones-section {
    display: flex;
}
.opiniones-swiper .swiper-wrapper {
    align-items: stretch;
}

.opiniones-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.opinion-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.opiniones-section .opiniones-swiper {
    height: 100%;
    padding: 0 5px 50px;
}

.opinion-company {
    margin-top: auto;
}

.opiniones-section .swiper-pagination-bullet-active {
    background: var(--yellow-color);
}

.opiniones-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: var(--yellow-color);
}

.js-empresa-card {
    display: none;
}

.js-empresa-card.is-visible {
    display: block;
}

.js-foro-item {
    display: none;
}

.js-foro-item.is-visible {
    display: block;
}

#main-content .section-full {
    padding: 5% 0 !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

#main-content .hero-section-block.section-full {
    padding: 0 0 5% !important;
}



.marcas-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.marcas-image img {
    max-width: 300px;
    height: auto;
}

.marcas-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.marcas-tabs {
    border: 1px solid #d9d9d9;
    margin-bottom: 50px;
}

.marcas-tabs-nav {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding: 0 !important;
    list-style-type: none !important;
    background-color: #f4f4f4;
}

.marcas-tabs-nav li {
    cursor: pointer;
    padding: 4px 22px;
    text-decoration: none;
}

.marcas-tabs-nav::before {
    position: absolute;
    content: " ";
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #cfc8d8;
    z-index: 1;
}

.marcas-tabs-nav li.active {
    font-weight: bold;
    color: #000;
    background: #fff !important;
    position: relative;
}

.marcas-tabs-nav li.active:first-child {
    border-right: 1px solid #d9d9d9;
    border-left: 1px solid transparent;
}

.marcas-tabs-nav li.active {
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}

.marcas-tab {
    padding: 30px;
    display: none;
}

.marcas-tab.active {
    display: block;
}

.marcas-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.marcas-stars {
    position: relative;
    width: 110px;
    height: 20px;
}

.marcas-stars-bg,
.marcas-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: 22px 20px;
    background-repeat: repeat-x;
}

.marcas-stars-bg {
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%23ddd' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='10,1 12.9,7.2 19.6,7.3 14.3,11.7 16.2,18.4 10,14.6 3.8,18.4 5.7,11.7 0.4,7.3 7.1,7.2'/%3E%3C/svg%3E");
}

.marcas-stars-fill {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%23f5a623' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='10,1 12.9,7.2 19.6,7.3 14.3,11.7 16.2,18.4 10,14.6 3.8,18.4 5.7,11.7 0.4,7.3 7.1,7.2'/%3E%3C/svg%3E");
}

.marcas-rating-link {
    font-size: 14px;
    text-decoration: none;
    color: #555;
}

.marcas-rating-link:hover {
    text-decoration: underline;
}

.marcas-tab .commentlist {
    list-style-top: none;
}

.marcas-review-rating {
    margin-bottom: 10px;
}

.marcas-tab-title {
    margin-bottom: 20px;
}

.marcas-review {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 20px;
}









.marcas-review-form-wrapper {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.marcas-review-form-title {
    margin-bottom: 20px;
    font-size: 24px;
}

.marcas-review-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.marcas-review-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.marcas-review-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.marcas-form-group {
    margin-bottom: 20px;
}

.marcas-form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.marcas-form-label.required::after {
    content: " *";
    color: #dc3545;
}

.marcas-form-input,
.marcas-form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.marcas-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.marcas-rating-input {
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.marcas-star-label {
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
}

.marcas-star-input {
    display: none;
}

.marcas-star {
    color: #ddd;
    transition: color 0.2s;
}

.marcas-star-label:hover .marcas-star,
.marcas-star-label:hover ~ .marcas-star-label .marcas-star {
    color: #f5a623;
}

.marcas-form-submit {
    background: #f5a623;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.marcas-form-submit:hover {
    background: #e0951f;
}

.marcas-review-pending {
    opacity: 0.7;
}

.marca-category-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.marca-category-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.marca-category-description {
    font-size: 16px;
    color: #666;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.marca-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.marca-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.marca-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.marca-card-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    overflow: hidden;
}

.marca-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
}

.marca-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    font-weight: bold;
    color: #ccc;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.marca-card-content {
    padding: 20px;
}

.marca-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.marca-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.marca-card-button {
    display: inline-block;
    background: #f5a623;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    transition: background 0.3s;
}

.marca-card:hover .marca-card-button {
    background: #e0951f;
}

.marcas-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}



.marca-breadcrumbs {
    margin-bottom: 10px;
}

.marca-breadcrumbs .rank-math-breadcrumb {
    font-size: 14px;
    color: #666;
}

.marca-breadcrumbs .rank-math-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.marca-breadcrumbs .rank-math-breadcrumb a:hover {
    color: #f5a623;
}

.marca-breadcrumbs .rank-math-breadcrumb .separator {
    margin: 0 2px;
    color: #999;
}

.marca-card-count {
    margin-bottom: 10px;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.navigation.pagination {
    margin: 40px 0;
    text-align: center;
}

.navigation.pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.navigation.pagination .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    min-width: 44px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.navigation.pagination .page-numbers:hover {
    background: #f5a623;
    color: #f5a623;
    border-color: #f5a623;
    text-decoration: none;
}
 
.navigation.pagination .page-numbers.current {
    background: #f5a623;
    color: #fff;
    border-color: #f5a623;
    cursor: default;
}

.navigation.pagination .page-numbers.current:hover {
    background: #f5a623;
    color: #fff;
}

.navigation.pagination .page-numbers.next,
.navigation.pagination .page-numbers.prev {
    padding: 10px 20px;
}

.navigation.pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
    padding: 10px 8px;
}

.navigation.pagination .page-numbers.dots:hover {
    background: transparent;
    color: #333;
    border: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


.news-post__title {
    color: #333;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
    font-size: 18px;
}

.author-page__suptitle {
    margin-bottom: 20px;
}

.archive-description__header {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
}

body .archive-description__title,
.archive-description__inner h2,
.archive-description__inner h1{
    margin-top: 0 !important;
}

.et-db #et-boc .author-page .et-l .et_pb_row {
    width: 100%;
}
.author-page .site-main .archive-description {
    margin: 28px auto 0;
    padding: 0 16px;
    color: #1f2937;
    font-size: 18px;
}

.archive-description__title {
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 34px;
    margin-bottom: 20px;
}

.author-page__suptitle,
.author-page .site-main .archive-description h2,
.author-page .site-main .archive-description h3 {
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.author-page__suptitle {
    margin-bottom: 15px;
}
.author-page__suptitle,
.author-page .site-main .archive-description h2 {
    font-size: 34px !important;
    margin: 40px 0 0;
}

.author-page .site-main .archive-description h3 {
    font-size: 24px;
    margin: 28px 0 0;
}

.author-page .site-main .archive-description ul,
.author-page .site-main .archive-description ol {
    margin: 0 0 20px !important;
    padding-left: 24px !important;
}

.author-page .site-main .archive-description li {
    margin: 0 0 10px !important;
}

.author-page .site-main .archive-description ul:first-of-type {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 22px !important;
    margin: 18px 0 26px !important;
}

.author-page .site-main .archive-description figure {
    margin: 26px 0;
}

.author-page .site-main .archive-description figure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.author-page .site-main .archive-description figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #64748b;
}

.author-page .site-main .archive-description a {
    color: #0ea5e9;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.author-page .site-main .archive-description a:hover {
    color: #0284c7;
}


.values-about .value-grid {
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.values-about .value-grid .value-card {
    padding: 20px;
}

.values-about .value-grid .value-card .value-icon svg {
    width: 50px;
    height: 50px;
}
.values-about .value-grid .value-card h3 {
    margin: 0;
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.et-db #et-boc .et-l .et_pb_with_border .et_pb_post img:not(.woocommerce-placeholder),
img:not(.empresas-grid img):not(header img):not(footer img):not(.value-card img):not(.marca-main img):not(.check-card-icon img) {
    border: 5px solid #070042 !important;
}

.value-section-block_page .value-grid .value-card h3 {
    margin: 0;
}
.value-section-block_page .value-grid .value-card {
    padding: 10px;
}
.value-section-block_page .value-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}
.value-section-block_page .section-title {
    font-size: 26px;
    text-align: left;
    color: #000;
    padding: 0;
    margin: 0;
    padding-bottom: 10px;
    font-weight: 500;
}
.value-section-block_page .value-section {
    padding: 0;
    background-color: transparent;
}

.form-wrapper-yellow input[type='text']::placeholder,
.form-wrapper-yellow input[type='email']::placeholder,
.form-wrapper-yellow input[type='url']::placeholder,
.form-wrapper-yellow input[type='tel']::placeholder,
.form-wrapper-yellow textarea {
    color: #fff;
}

.container {
    width: 100% !important;
}

#main-content .hero-section-block.p-0.section-full,
.p-0 {
    padding: 0 !important;
}

.content-area__inner {
    padding: 60px 0;
}

.single-post .et_pb_post li,
.single-post .et_pb_post p {
    color: #000;
}

.hero-section-block .et_pb_section {
    padding: 60px 0;
}





.content-area__inner h1,
.content-area__inner h2,
.content-area__inner h3,
.content-area__inner h4,
.content-area__inner h5,
.content-area__inner h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.section-title {
    margin-bottom: 20px;
    margin-top: 40px;
}

.wp-block-accordion .wp-block-accordion-panel {
    margin-bottom: 20px;
}
.wp-block-accordion h3 {
    margin: 0;
}

.content-area__inner p,
.content-area__inner li,
.content-area__inner .wp-block-paragraph {
    line-height: 2;
    color: #000;
}
.content-area__inner ul,
.content-area__inner ol,
#content-area ul:not(.products):not(.tabs):not(.nav-links),
#content-area ol {
    list-style-type: disc;
    padding: 0 0 0 1em;
    line-height: 2;
    margin: 0 0 20px;
}
.content-area__inner ol {
    list-style-type: decimal;
    list-style-position: inside;
    padding: 0 0 23px;
}
.content-area__inner ul li,
.content-area__inner ol li {
    margin: 0 0 10px;
}
.content-area__inner ul li ul,
.content-area__inner ul li ol {
    padding: 2px 0 2px 20px;
}
.content-area__inner .rank-math-list {
    list-style: none;
    padding: 0;
}
.content-area__inner .rank-math-list-item {
    margin-bottom: 20px;
}









.content-area__inner a:not(.btn),
.entry-content a:not(.btn) {
    color: #2ea3f2;
}

.content-area__inner a:not(.btn):hover,
.entry-content a:not(.btn):hover {
    color: #1a42bb;
}

.content-area__inner li strong a:not(.btn),
.content-area__inner p strong a:not(.btn) {
    color: #2ea3f2;
}






#main-content .cat-page .hero-section-block,
.cat-page .value-section {
    padding: 0 !important;
}




.entry-content > :first-child,
.section-title:first-child {
    margin-top: 0;
}

.cat-page .wp-block-group .wp-block-paragraph,
.cat-page .wp-block-group .wp-block-heading {
    padding: 0;
}

.cat-page .wp-block-heading,
.cat-page .wp-block-paragraph,
.cat-page .wp-block-group {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.subnav {
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
    .archive-description__header {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .author-page .site-main .archive-description {
        font-size: 17px;
    }

    .archive-description__title {
        font-size: 28px;
    }

    .author-page__suptitle,
    .author-page .site-main .archive-description h2 {
        font-size: 28px !important;
        margin-top: 30px;
    }

    .author-page .site-main .archive-description h3 {
        font-size: 21px;
    }

    .navigation.pagination .nav-links {
        gap: 6px;
    }

    .navigation.pagination .page-numbers {
        padding: 8px 12px;
        min-width: 40px;
        font-size: 14px;
    }

    .navigation.pagination .page-numbers.next,
    .navigation.pagination .page-numbers.prev {
        padding: 8px 16px;
    }
    
    .marcas-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .marca-category-title {
        font-size: 28px;
    }
    
    .logo {
        gap: 0;
    }
    .logo-text {
        font-size: 12px;
    }

    .header .header_btn {
        padding: 10px;
    }

    .et-db #et-boc .et-l .et_pb_text_inner h1 {
        font-size: 32px;
        margin-top: 0;
    }

    .section-title,
    .et_pb_text_2 h2 {
        font-size: 24px;
    }

    .btn {
        padding: 10px;
    }

    .cta-banner,
    .opiniones-section,
    .proceso-section,
    .blog-section,
    .foro-section,
    .value-section {
        padding: 40px 0;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-banner p {
        font-size: 16px;
        margin-bottom: 35px;
        opacity: 1;
    }

    .single #content-area {
        padding-top: 30px;
    }

    body:not(.et-tb) #main-content .container, body:not(.et-tb-has-header) #main-content .container {
        padding-top: 0 !important;
    }

    .container {
        padding: 0 15px !important;
        width: 100% !important;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .topic-title {
        font-size: 18px;
        margin-bottom: 0;
    }

    .et-db #et-boc .et-l .et_pb_column .et_pb_row_inner, .et-db #et-boc .et-l .et_pb_row {
        padding: 0;
    }

    .et-db #et-boc .et-l .et_pb_row {
        width: 100% !important;
        padding: 0 15px !important;
        margin: 0;
    }

    #cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
        padding: 0 15px;
    }

    .topic-stats,
    .topic-meta {
        gap: 5px;
    }
}

@media (min-width: 981px) {
    #main-content .container:before {
        background-color: transparent !important;
    }
}


#empresas .section-head {
    text-align: center;
    margin-bottom: 44px;
}
#empresas .section-head h2 {
    margin-bottom: 14px;
    color: #1e3fbb;
    font-weight: 800;
}
#empresas .section-lead {
    text-align: center;
    color: #7a8195;
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
#empresas .carousel {
    position: relative;
}
#empresas .carousel-viewport {
    position: relative;
    overflow: hidden;
    margin: 0 -6px;
    padding: 6px 6px 0;
}
#empresas .carousel-track {
    display: flex;
    gap: 22px;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 6px;
}
#empresas .carousel-track::-webkit-scrollbar {
    display: none;
}
#empresas .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #ffce3d;
    color: #0a1350;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 6px 20px rgba(15,25,60,.09);
    transition: all 220ms cubic-bezier(.4,0,.2,1);
    border: none;
    cursor: pointer;
}
#empresas .carousel-arrow:hover:not(:disabled) {
    background: #f2b619;
    transform: translateY(-50%) scale(1.06);
}
#empresas .carousel-arrow:disabled {
    opacity: .35;
}
#empresas .carousel-arrow svg {
    width: 22px;
    height: 22px;
}
#empresas .carousel-arrow.prev {
    left: -10px;
}
#empresas .carousel-arrow.next {
    right: -10px;
}
#empresas .carousel-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}
#empresas .carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #c9d0dd;
    transition: all 220ms cubic-bezier(.4,0,.2,1);
    padding: 0;
    border: none;
    cursor: pointer;
}
#empresas .carousel-dot.is-active {
    width: 28px;
    border-radius: 99px;
    background: #1e3fbb;
}
#empresas .company-card {
    flex: 0 0 calc((100% - 44px) / 3);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 20px;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    transition: transform 220ms, box-shadow 220ms, border-color 220ms;
    min-height: 340px;
}
#empresas .company-card:hover {
    transform: translateY(-4px);
    border-color: #c9d0dd;
}
#empresas .company-logo {
    width: 78px; height: 78px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e6ecfc, #f0f4ff);
    color: #142a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    border: 1px solid #e5e8ef;
    overflow: hidden;
}
#empresas .company-logo--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#empresas .company-card h3 {
    color: #1e3fbb;
    font-size: 1.15rem;
    margin: 0;
    padding: 0;
}
#empresas .company-url {
    font-size: .78rem;
    color: #7a8195;
    margin-top: -8px;
}
#empresas .stars {
    display: inline-flex;
    gap: 3px;
    color: #dcdfe6;
}
#empresas .stars svg {
    width: 18px;
    height: 18px;
}
#empresas .stars .filled {
    color: #ff9a1f;
}
#empresas .opiniones-count {
    font-size: .9rem;
    color: #4a5266;
    margin: 0;
    font-weight: 500;
}
#empresas .company-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}
#empresas .btn-sm {
    padding: 9px 12px;
    font-size: .82rem;
    border-radius: 99px;
    flex: 1;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#empresas .btn-outline {
    border: 1.5px solid #1e3fbb;
    color: #1e3fbb;
    background: transparent;
}

#empresas .btn-primary {
    background: #1e3fbb;
    color: #fff;
    border: 1.5px solid #1e3fbb;
}

#empresas .company-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

#empresas .company-card-link:hover {
    text-decoration: none;
}

#empresas .company-card-link:hover .company-name,
#empresas .company-card-link:hover h3 {
    color: #142a8a;
    text-decoration: underline;
}

.page-template-categoria-marcas #empresas,
.marcas-template-default #empresas {
    padding-bottom: 50px;
}

@media (max-width: 900px) {
    #empresas .company-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    #empresas .carousel-viewport {
        padding-bottom: 0;
    }
}
@media (max-width: 600px) {
    #empresas .company-card {
        flex: 0 0 85%;
    }
    #empresas .carousel-arrow {
        width: 44px;
        height: 44px;
    }
    #empresas .carousel-arrow.prev {
        left: 4px;
    }
    #empresas .carousel-arrow.next {
        right: 4px;
    }
}