/* 
googlleo9.com - Custom CSS
Tema: Inventario y gestión de almacén
Estilo: Vintage Mid-century con cuadrícula rota
*/

/*=================================
  1. Variables
=================================*/
:root {
    /* Colores principales */
    --ost-primary: #E27D60;
    --ost-secondary: #41B3A3;
    --ost-light: #F9F7F4;
    
    /* Colores secundarios */
    --ost-accent-1: #85CDCB;
    --ost-accent-2: #E8C547;
    --ost-accent-3: #C38370;
    
    /* Neutrales */
    --ost-gray-light: #D8D8D8;
    --ost-gray-dark: #555555;
    --ost-off-white: #FAF9F6;
    
    /* Espaciado */
    --ost-space-xs: 0.25rem;
    --ost-space-sm: 0.5rem;
    --ost-space-md: 1rem;
    --ost-space-lg: 2rem;
    --ost-space-xl: 3rem;
    --ost-space-xxl: 5rem;
    
    /* Bordes y sombras */
    --ost-border-radius: 0.5rem;
    --ost-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --ost-transition: all 0.3s ease;
    
    /* Tipografía */
    --ost-font-family: 'Poppins', sans-serif;
}

/*=================================
  2. Estilos base
=================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--ost-font-family);
    color: var(--ost-gray-dark);
    background-color: var(--ost-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: var(--ost-space-md);
    line-height: 1.3;
}

p {
    margin-bottom: var(--ost-space-md);
}

a {
    color: var(--ost-secondary);
    text-decoration: none;
    transition: var(--ost-transition);
}

a:hover {
    color: var(--ost-primary);
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0;
}

button {
    cursor: pointer;
    font-family: var(--ost-font-family);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*=================================
  3. Encabezado y navegación
=================================*/
.ost-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--ost-light);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ost-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--ost-space-md) var(--ost-space-lg);
}

.ost-logo-wrapper {
    display: flex;
    align-items: center;
}

.ost-logo {
    height: 50px;
    width: auto;
}

.ost-nav-list {
    display: flex;
    margin: 0;
}

.ost-nav-item {
    margin-left: var(--ost-space-lg);
    position: relative;
}

.ost-nav-item a {
    color: var(--ost-gray-dark);
    font-weight: 500;
    padding: var(--ost-space-xs) 0;
    position: relative;
}

.ost-nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ost-primary);
    transition: var(--ost-transition);
}

.ost-nav-item a:hover::after,
.ost-nav-item-active a::after {
    width: 100%;
}

.ost-menu-toggle {
    border: none;
    background: none;
    padding: var(--ost-space-sm);
    display: none;
}

.ost-menu-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--ost-gray-dark);
    position: relative;
}

.ost-menu-icon::before,
.ost-menu-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--ost-gray-dark);
    transition: var(--ost-transition);
}

.ost-menu-icon::before {
    top: -8px;
}

.ost-menu-icon::after {
    bottom: -8px;
}

/* Menú móvil */
.ost-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--ost-light);
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.ost-mobile-menu:not([hidden]) {
    transform: translateX(0);
}

.ost-mobile-menu-inner {
    padding: var(--ost-space-xl) var(--ost-space-lg);
    height: 100%;
    overflow-y: auto;
}

.ost-mobile-close {
    position: absolute;
    top: var(--ost-space-md);
    right: var(--ost-space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ost-gray-dark);
}

.ost-mobile-nav {
    margin-top: var(--ost-space-xl);
}

.ost-mobile-nav-item {
    margin-bottom: var(--ost-space-lg);
}

.ost-mobile-nav-item a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ost-gray-dark);
    display: block;
    padding: var(--ost-space-sm) 0;
    border-bottom: 1px solid var(--ost-gray-light);
}

.ost-mobile-nav-item-active a {
    color: var(--ost-primary);
}

/*=================================
  4. Banner de página
=================================*/
.ost-page-banner {
    background-color: var(--ost-secondary);
    color: var(--ost-light);
    padding: var(--ost-space-xl) 0;
    position: relative;
    overflow: hidden;
}

.ost-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ost-secondary) 0%, var(--ost-accent-1) 100%);
    opacity: 0.8;
    z-index: 1;
}

.ost-page-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    position: relative;
    z-index: 2;
    text-align: center;
}

.ost-page-title {
    font-size: 2.5rem;
    margin-bottom: var(--ost-space-sm);
}

.ost-page-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/*=================================
  5. Sección Showcase (Héroe)
=================================*/
.ost-showcase {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-off-white);
    position: relative;
}

.ost-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E27D60' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.ost-showcase-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ost-space-xl);
    position: relative;
    z-index: 2;
}

.ost-showcase-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-2rem);
}

.ost-showcase-title {
    font-size: 3rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
    line-height: 1.2;
}

.ost-showcase-description {
    font-size: 1.2rem;
    margin-bottom: var(--ost-space-xl);
}

.ost-showcase-cta {
    display: inline-block;
    background-color: var(--ost-primary);
    color: white;
    padding: var(--ost-space-md) var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--ost-transition);
    align-self: flex-start;
}

.ost-showcase-cta:hover {
    background-color: var(--ost-accent-3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ost-showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    transform: translateY(2rem) rotate(2deg);
}

.ost-image-feature {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ost-showcase-image:hover .ost-image-feature {
    transform: scale(1.05);
}

/*=================================
  6. Ventajas
=================================*/
.ost-advantages {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
}

.ost-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--ost-space-xl);
    padding: 0 var(--ost-space-lg);
}

.ost-section-title {
    font-size: 2.2rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-section-subtitle {
    font-size: 1.1rem;
    color: var(--ost-gray-dark);
}

.ost-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--ost-space-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
}

.ost-advantage-card {
    background-color: white;
    padding: var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    transition: var(--ost-transition);
    position: relative;
    overflow: hidden;
}

.ost-advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ost-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--ost-primary);
    transition: var(--ost-transition);
}

.ost-advantage-card:nth-child(2n)::before {
    background-color: var(--ost-secondary);
}

.ost-advantage-card:nth-child(3n)::before {
    background-color: var(--ost-accent-2);
}

.ost-advantage-card:nth-child(4n)::before {
    background-color: var(--ost-accent-1);
}

.ost-advantage-icon {
    margin-bottom: var(--ost-space-lg);
    font-size: 2.5rem;
    color: var(--ost-primary);
}

.ost-advantage-card:nth-child(2n) .ost-advantage-icon {
    color: var(--ost-secondary);
}

.ost-advantage-card:nth-child(3n) .ost-advantage-icon {
    color: var(--ost-accent-2);
}

.ost-advantage-card:nth-child(4n) .ost-advantage-icon {
    color: var(--ost-accent-1);
}

.ost-advantage-title {
    font-size: 1.3rem;
    margin-bottom: var(--ost-space-md);
}

.ost-advantage-text {
    color: var(--ost-gray-dark);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/*=================================
  7. Proceso con elementos 3D
=================================*/
.ost-process {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-off-white);
    position: relative;
}

.ost-process::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: var(--ost-accent-1);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, 50%);
    z-index: 1;
}

.ost-process-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ost-space-xl);
    position: relative;
    z-index: 2;
}

.ost-process-text {
    padding-right: var(--ost-space-lg);
}

.ost-process-title {
    font-size: 2.2rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-process-description {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-xl);
}

.ost-process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ost-process-step {
    display: flex;
    margin-bottom: var(--ost-space-lg);
    position: relative;
}

.ost-step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ost-primary);
    margin-right: var(--ost-space-lg);
    line-height: 1;
    opacity: 0.7;
}

.ost-process-step:nth-child(2n) .ost-step-number {
    color: var(--ost-secondary);
}

.ost-process-step:nth-child(3n) .ost-step-number {
    color: var(--ost-accent-2);
}

.ost-process-step:nth-child(4n) .ost-step-number {
    color: var(--ost-accent-1);
}

.ost-step-content {
    flex: 1;
}

.ost-step-title {
    font-size: 1.2rem;
    margin-bottom: var(--ost-space-xs);
}

.ost-step-text {
    font-size: 0.95rem;
    color: var(--ost-gray-dark);
    margin-bottom: 0;
}

.ost-process-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.ost-process-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ost-process-image {
    position: relative;
    z-index: 2;
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    overflow: hidden;
    transform: rotate(-2deg);
    height: 100%;
    object-fit: cover;
}

/*=================================
  8. Estadísticas
=================================*/
.ost-stats {
    padding: var(--ost-space-xl) 0;
    background-color: var(--ost-secondary);
    color: white;
}

.ost-stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--ost-space-lg);
}

.ost-stat-item {
    text-align: center;
    padding: var(--ost-space-lg);
    position: relative;
}

.ost-stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.ost-stat-item:last-child::after {
    display: none;
}

.ost-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--ost-space-sm);
    line-height: 1.2;
}

.ost-stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/*=================================
  9. Características con diseño de cuadrícula rota
=================================*/
.ost-features {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
}

.ost-features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: var(--ost-space-lg);
}

.ost-feature-block {
    background-color: white;
    border-radius: var(--ost-border-radius);
    overflow: hidden;
    box-shadow: var(--ost-box-shadow);
    transition: var(--ost-transition);
    position: relative;
}

.ost-feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ost-feature-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ost-feature-content {
    padding: var(--ost-space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ost-feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-feature-text {
    font-size: 0.95rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-feature-link {
    color: var(--ost-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.ost-feature-link::after {
    content: '→';
    margin-left: var(--ost-space-sm);
    transition: var(--ost-transition);
}

.ost-feature-link:hover::after {
    transform: translateX(5px);
}

.ost-feature-image {
    height: 100%;
    overflow: hidden;
}

.ost-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ost-feature-block:hover .ost-feature-image img {
    transform: scale(1.05);
}

/* Desplazamientos para cuadrícula rota */
.ost-feature-block:nth-child(3) {
    transform: translateY(20px);
}

.ost-feature-block:nth-child(4) {
    transform: translateY(-20px);
}

.ost-feature-block:nth-child(3):hover,
.ost-feature-block:nth-child(4):hover {
    transform: translateY(-5px);
}

/*=================================
  10. Clientes
=================================*/
.ost-clients {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-off-white);
}

.ost-clients-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--ost-space-lg);
}

.ost-client-card {
    background-color: white;
    padding: var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    transition: var(--ost-transition);
    text-align: center;
}

.ost-client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ost-client-icon {
    width: 70px;
    height: 70px;
    background-color: var(--ost-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--ost-space-lg);
    font-size: 1.8rem;
    color: var(--ost-primary);
}

.ost-client-card:nth-child(2n) .ost-client-icon {
    color: var(--ost-secondary);
}

.ost-client-card:nth-child(3n) .ost-client-icon {
    color: var(--ost-accent-2);
}

.ost-client-card:nth-child(4n) .ost-client-icon {
    color: var(--ost-accent-1);
}

.ost-client-title {
    font-size: 1.3rem;
    margin-bottom: var(--ost-space-md);
}

.ost-client-text {
    font-size: 0.95rem;
    color: var(--ost-gray-dark);
    margin-bottom: 0;
}

/*=================================
  11. Contacto
=================================*/
.ost-contact {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
    position: relative;
    overflow: hidden;
}

.ost-contact::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--ost-primary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.ost-contact::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-color: var(--ost-secondary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.ost-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ost-space-xl);
    position: relative;
    z-index: 2;
}

.ost-contact-info {
    padding-right: var(--ost-space-lg);
}

.ost-contact-title {
    font-size: 2.2rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-contact-text {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-xl);
}

.ost-contact-details {
    margin-top: var(--ost-space-xl);
}

.ost-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--ost-space-md);
}

.ost-contact-item i {
    width: 40px;
    height: 40px;
    background-color: var(--ost-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--ost-space-md);
    color: var(--ost-primary);
}

.ost-contact-form-wrapper {
    background-color: white;
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    padding: var(--ost-space-xl);
    position: relative;
}

.ost-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ost-space-lg);
}

.ost-form-group {
    position: relative;
}

.ost-form-group-full {
    grid-column: span 2;
}

.ost-form-label {
    display: block;
    margin-bottom: var(--ost-space-sm);
    font-weight: 500;
    font-size: 0.9rem;
}

.ost-form-input,
.ost-form-textarea,
.ost-form-select {
    width: 100%;
    padding: var(--ost-space-md);
    border: 1px solid var(--ost-gray-light);
    border-radius: var(--ost-border-radius);
    font-family: var(--ost-font-family);
    font-size: 0.95rem;
    transition: var(--ost-transition);
}

.ost-form-input:focus,
.ost-form-textarea:focus,
.ost-form-select:focus {
    outline: none;
    border-color: var(--ost-secondary);
    box-shadow: 0 0 0 3px rgba(65, 179, 163, 0.1);
}

.ost-form-checkbox {
    display: flex;
    align-items: flex-start;
}

.ost-form-checkbox input {
    margin-right: var(--ost-space-sm);
    margin-top: 5px;
}

.ost-form-submit {
    background-color: var(--ost-primary);
    color: white;
    border: none;
    padding: var(--ost-space-md) var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--ost-transition);
    cursor: pointer;
    width: 100%;
}

.ost-form-submit:hover {
    background-color: var(--ost-accent-3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*=================================
  12. Pie de página
=================================*/
.ost-footer {
    background-color: var(--ost-gray-dark);
    color: white;
    padding-top: var(--ost-space-xl);
}

.ost-footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--ost-space-xl);
    margin-bottom: var(--ost-space-xl);
}

.ost-footer-logo {
    padding-right: var(--ost-space-lg);
}

.ost-footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: var(--ost-space-md);
    filter: brightness(0) invert(1);
}

.ost-footer-tagline {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: var(--ost-space-lg);
}

.ost-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ost-space-lg);
}

.ost-footer-heading {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-lg);
    position: relative;
    padding-bottom: var(--ost-space-sm);
}

.ost-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--ost-primary);
}

.ost-footer-list,
.ost-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ost-footer-list li,
.ost-footer-contact li {
    margin-bottom: var(--ost-space-sm);
}

.ost-footer-list a {
    color: white;
    opacity: 0.7;
    transition: var(--ost-transition);
}

.ost-footer-list a:hover {
    opacity: 1;
    color: var(--ost-primary);
}

.ost-footer-contact li {
    display: flex;
    align-items: flex-start;
}

.ost-footer-contact i {
    margin-right: var(--ost-space-sm);
    margin-top: 5px;
    color: var(--ost-primary);
}

.ost-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--ost-space-lg) 0;
    text-align: center;
}

.ost-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/*=================================
  13. Cookie Consent
=================================*/
.ost-cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: white;
    padding: var(--ost-space-lg);
    border-radius: var(--ost-border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.ost-cookie-title {
    font-size: 1.2rem;
    margin-bottom: var(--ost-space-sm);
}

.ost-cookie-text {
    font-size: 0.9rem;
    margin-bottom: var(--ost-space-md);
}

.ost-cookie-buttons {
    display: flex;
    justify-content: space-between;
}

.ost-cookie-button {
    padding: var(--ost-space-sm) var(--ost-space-lg);
    border-radius: var(--ost-border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--ost-transition);
    border: none;
    cursor: pointer;
}

.ost-cookie-customize {
    background-color: transparent;
    border: 1px solid var(--ost-gray-light);
    color: var(--ost-gray-dark);
}

.ost-cookie-customize:hover {
    background-color: var(--ost-gray-light);
}

.ost-cookie-accept {
    background-color: var(--ost-secondary);
    color: white;
}

.ost-cookie-accept:hover {
    background-color: var(--ost-accent-1);
}

.ost-cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--ost-space-md);
}

.ost-cookie-settings-content {
    background-color: white;
    border-radius: var(--ost-border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.ost-cookie-settings-header {
    padding: var(--ost-space-lg);
    border-bottom: 1px solid var(--ost-gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ost-cookie-settings-title {
    font-size: 1.3rem;
    margin: 0;
}

.ost-cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ost-gray-dark);
}

.ost-cookie-settings-body {
    padding: var(--ost-space-lg);
}

.ost-cookie-category {
    margin-bottom: var(--ost-space-lg);
    padding-bottom: var(--ost-space-lg);
    border-bottom: 1px solid var(--ost-gray-light);
}

.ost-cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ost-cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ost-space-sm);
}

.ost-cookie-category-title {
    font-size: 1.1rem;
    margin: 0;
}

.ost-cookie-switch {
    position: relative;
}

.ost-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ost-switch-label {
    display: block;
    width: 50px;
    height: 26px;
    background-color: var(--ost-gray-light);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: var(--ost-transition);
}

.ost-switch-label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: var(--ost-transition);
}

.ost-cookie-switch input:checked + .ost-switch-label {
    background-color: var(--ost-secondary);
}

.ost-cookie-switch input:checked + .ost-switch-label::after {
    transform: translateX(24px);
}

.ost-cookie-switch input:disabled + .ost-switch-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.ost-cookie-category-description {
    font-size: 0.9rem;
    color: var(--ost-gray-dark);
    margin: 0;
}

.ost-cookie-settings-footer {
    padding: var(--ost-space-lg);
    border-top: 1px solid var(--ost-gray-light);
    text-align: right;
}

.ost-cookie-save {
    background-color: var(--ost-secondary);
    color: white;
}

.ost-cookie-save:hover {
    background-color: var(--ost-accent-1);
}

/*=================================
  14. Blog y Consejos
=================================*/
.ost-blog-intro {
    padding: var(--ost-space-xl) 0;
    background-color: var(--ost-light);
}

.ost-blog-intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    text-align: center;
}

.ost-blog-intro-text {
    font-size: 1.1rem;
    color: var(--ost-gray-dark);
}

.ost-articles {
    padding: var(--ost-space-xl) 0 var(--ost-space-xxl);
    background-color: var(--ost-light);
}

.ost-articles-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
}

.ost-article-card {
    background-color: white;
    border-radius: var(--ost-border-radius);
    overflow: hidden;
    box-shadow: var(--ost-box-shadow);
    margin-bottom: var(--ost-space-xl);
    transition: var(--ost-transition);
}

.ost-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ost-article-image {
    height: 300px;
    overflow: hidden;
}

.ost-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ost-article-card:hover .ost-article-image img {
    transform: scale(1.05);
}

.ost-article-content {
    padding: var(--ost-space-xl);
}

.ost-article-title {
    font-size: 1.8rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-article-meta {
    display: flex;
    align-items: center;
    margin-bottom: var(--ost-space-lg);
    font-size: 0.9rem;
    color: var(--ost-gray-dark);
}

.ost-article-date {
    margin-right: var(--ost-space-md);
    opacity: 0.7;
}

.ost-article-category {
    padding: var(--ost-space-xs) var(--ost-space-sm);
    background-color: var(--ost-secondary);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
}

.ost-article-excerpt {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-article-body {
    font-size: 1rem;
    color: var(--ost-gray-dark);
}

.ost-article-body h3 {
    font-size: 1.3rem;
    margin-top: var(--ost-space-lg);
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-article-body ul {
    list-style: disc;
    padding-left: var(--ost-space-xl);
    margin-bottom: var(--ost-space-lg);
}

.ost-article-body li {
    margin-bottom: var(--ost-space-sm);
}

.ost-article-body strong {
    font-weight: 600;
    color: var(--ost-gray-dark);
}

/*=================================
  15. Páginas de implementación
=================================*/
.ost-intro-section {
    padding: var(--ost-space-xl) 0;
    background-color: var(--ost-light);
}

.ost-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ost-space-xl);
    align-items: center;
}

.ost-intro-text {
    padding-right: var(--ost-space-lg);
}

.ost-intro-title {
    font-size: 2.2rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-intro-description {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-intro-image {
    border-radius: var(--ost-border-radius);
    overflow: hidden;
    box-shadow: var(--ost-box-shadow);
}

/* Fases de implementación */
.ost-phases {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-off-white);
    position: relative;
}

.ost-phases::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, rgba(249, 247, 244, 0.8));
    pointer-events: none;
}

.ost-phases-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    position: relative;
}

.ost-phases-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    background-color: var(--ost-primary);
    opacity: 0.3;
}

.ost-phase-item {
    display: flex;
    margin-bottom: var(--ost-space-xl);
    position: relative;
}

.ost-phase-marker {
    width: 60px;
    height: 60px;
    background-color: var(--ost-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: var(--ost-space-lg);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.ost-phase-item:nth-child(2n) .ost-phase-marker {
    background-color: var(--ost-secondary);
}

.ost-phase-item:nth-child(3n) .ost-phase-marker {
    background-color: var(--ost-accent-2);
}

.ost-phase-item:nth-child(4n) .ost-phase-marker {
    background-color: var(--ost-accent-1);
}

.ost-phase-content {
    background-color: white;
    padding: var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    flex-grow: 1;
}

.ost-phase-title {
    font-size: 1.5rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-phase-text {
    font-size: 1.05rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-phase-list {
    margin-bottom: var(--ost-space-lg);
    padding-left: var(--ost-space-lg);
    list-style: disc;
}

.ost-phase-list li {
    margin-bottom: var(--ost-space-xs);
    font-size: 0.95rem;
}

.ost-phase-duration {
    font-size: 0.9rem;
    color: var(--ost-gray-dark);
    font-style: italic;
}

/* Módulos disponibles */
.ost-key-features {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
}

.ost-features-blocks {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--ost-space-lg);
}

.ost-feature-block-alt {
    background-color: white;
    padding: var(--ost-space-lg);
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    transition: var(--ost-transition);
    display: flex;
    flex-direction: column;
}

.ost-feature-block-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ost-feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--ost-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--ost-space-lg);
    font-size: 1.8rem;
    color: var(--ost-primary);
}

.ost-feature-block-alt:nth-child(2n) .ost-feature-icon {
    color: var(--ost-secondary);
}

.ost-feature-block-alt:nth-child(3n) .ost-feature-icon {
    color: var(--ost-accent-2);
}

.ost-feature-block-alt:nth-child(4n) .ost-feature-icon {
    color: var(--ost-accent-1);
}

.ost-feature-details {
    flex-grow: 1;
}

.ost-feature-name {
    font-size: 1.2rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-feature-desc {
    font-size: 0.95rem;
    color: var(--ost-gray-dark);
    margin-bottom: 0;
}

/* Casos de éxito */
.ost-case-studies {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-off-white);
}

.ost-case-studies.alt {
    background-color: var(--ost-light);
}

.ost-cases-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ost-space-xl);
}

.ost-case-item {
    background-color: white;
    border-radius: var(--ost-border-radius);
    overflow: hidden;
    box-shadow: var(--ost-box-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: var(--ost-transition);
}

.ost-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ost-case-image {
    height: 100%;
    overflow: hidden;
}

.ost-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ost-case-item:hover .ost-case-image img {
    transform: scale(1.05);
}

.ost-case-content {
    padding: var(--ost-space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ost-case-category {
    display: inline-block;
    padding: var(--ost-space-xs) var(--ost-space-sm);
    background-color: var(--ost-secondary);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: var(--ost-space-md);
}

.ost-case-title {
    font-size: 1.5rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-case-description {
    font-size: 1rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-case-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ost-case-results li {
    position: relative;
    padding-left: 25px;
    margin-bottom: var(--ost-space-sm);
    font-size: 0.95rem;
}

.ost-case-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ost-primary);
    font-weight: bold;
}

/* Preguntas frecuentes */
.ost-faq {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
}

.ost-faq.alt {
    background-color: var(--ost-off-white);
}

.ost-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
}

.ost-faq-item {
    background-color: white;
    border-radius: var(--ost-border-radius);
    overflow: hidden;
    box-shadow: var(--ost-box-shadow);
    margin-bottom: var(--ost-space-md);
}

.ost-faq-question {
    padding: var(--ost-space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--ost-transition);
}

.ost-faq-question:hover {
    background-color: var(--ost-off-white);
}

.ost-faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    flex-grow: 1;
}

.ost-faq-icon {
    flex-shrink: 0;
    margin-left: var(--ost-space-md);
    transition: var(--ost-transition);
}

.ost-faq-question[aria-expanded="true"] .ost-faq-icon {
    transform: rotate(180deg);
}

.ost-faq-answer {
    padding: 0 var(--ost-space-lg) var(--ost-space-lg);
}

.ost-faq-answer p {
    margin: 0;
    font-size: 1rem;
}

/*=================================
  16. Metodología
=================================*/
.ost-pillars {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-off-white);
}

.ost-pillars-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ost-space-xl);
}

.ost-pillar-item {
    background-color: white;
    border-radius: var(--ost-border-radius);
    overflow: hidden;
    box-shadow: var(--ost-box-shadow);
    display: flex;
    transition: var(--ost-transition);
}

.ost-pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ost-pillar-number {
    background-color: var(--ost-primary);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    padding: var(--ost-space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.ost-pillar-item:nth-child(2) .ost-pillar-number {
    background-color: var(--ost-secondary);
}

.ost-pillar-item:nth-child(3) .ost-pillar-number {
    background-color: var(--ost-accent-2);
}

.ost-pillar-item:nth-child(4) .ost-pillar-number {
    background-color: var(--ost-accent-1);
}

.ost-pillar-item:nth-child(5) .ost-pillar-number {
    background-color: var(--ost-accent-3);
}

.ost-pillar-content {
    padding: var(--ost-space-xl);
    flex-grow: 1;
}

.ost-pillar-title {
    font-size: 1.5rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-pillar-text {
    font-size: 1rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-pillar-list {
    list-style: disc;
    padding-left: var(--ost-space-xl);
    margin-bottom: 0;
}

.ost-pillar-list li {
    margin-bottom: var(--ost-space-xs);
    font-size: 0.95rem;
}

/* Flujo de trabajo */
.ost-workflow {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
}

.ost-workflow-diagram {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--ost-space-xl);
    align-items: center;
}

.ost-workflow-content {
    display: flex;
    flex-direction: column;
}

.ost-workflow-step {
    display: flex;
    margin-bottom: var(--ost-space-lg);
}

.ost-workflow-icon {
    width: 60px;
    height: 60px;
    background-color: var(--ost-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--ost-space-lg);
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.ost-workflow-step:nth-child(3) .ost-workflow-icon {
    background-color: var(--ost-secondary);
}

.ost-workflow-step:nth-child(5) .ost-workflow-icon {
    background-color: var(--ost-accent-2);
}

.ost-workflow-step:nth-child(7) .ost-workflow-icon {
    background-color: var(--ost-accent-1);
}

.ost-workflow-details {
    flex-grow: 1;
}

.ost-workflow-title {
    font-size: 1.3rem;
    margin-bottom: var(--ost-space-sm);
    color: var(--ost-gray-dark);
}

.ost-workflow-description {
    font-size: 1rem;
    margin-bottom: var(--ost-space-sm);
    color: var(--ost-gray-dark);
}

.ost-workflow-duration {
    font-size: 0.9rem;
    color: var(--ost-accent-3);
    font-weight: 500;
}

.ost-workflow-connector {
    width: 2px;
    height: 40px;
    background-color: var(--ost-gray-light);
    margin-left: 30px;
}

.ost-workflow-image {
    border-radius: var(--ost-border-radius);
    overflow: hidden;
    box-shadow: var(--ost-box-shadow);
    height: 100%;
}

.ost-workflow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tecnologías */
.ost-technologies {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-off-white);
}

.ost-tech-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--ost-space-lg);
}

.ost-tech-item {
    background-color: white;
    padding: var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    transition: var(--ost-transition);
    display: flex;
    align-items: flex-start;
}

.ost-tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ost-tech-icon {
    width: 60px;
    height: 60px;
    background-color: var(--ost-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--ost-space-lg);
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--ost-primary);
}

.ost-tech-item:nth-child(2n) .ost-tech-icon {
    color: var(--ost-secondary);
}

.ost-tech-item:nth-child(3n) .ost-tech-icon {
    color: var(--ost-accent-2);
}

.ost-tech-item:nth-child(4n) .ost-tech-icon {
    color: var(--ost-accent-1);
}

.ost-tech-content {
    flex-grow: 1;
}

.ost-tech-title {
    font-size: 1.2rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-tech-desc {
    font-size: 0.95rem;
    color: var(--ost-gray-dark);
    margin-bottom: 0;
}

/* Beneficios */
.ost-benefits {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-secondary);
    color: white;
}

.ost-benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--ost-space-xl);
    align-items: center;
}

.ost-benefits-content {
    padding-right: var(--ost-space-lg);
}

.ost-benefits-title {
    font-size: 2.2rem;
    margin-bottom: var(--ost-space-lg);
}

.ost-benefits-intro {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-xl);
}

.ost-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ost-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--ost-space-lg);
}

.ost-benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--ost-space-lg);
    flex-shrink: 0;
    font-size: 1.5rem;
}

.ost-benefit-content {
    flex-grow: 1;
}

.ost-benefit-title {
    font-size: 1.2rem;
    margin-bottom: var(--ost-space-sm);
}

.ost-benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.ost-benefits-image {
    border-radius: var(--ost-border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ost-benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=================================
  17. Contacto
=================================*/
.ost-contact-main {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
}

.ost-contact-main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--ost-space-xl);
}

.ost-contact-info-card {
    background-color: white;
    padding: var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
}

.ost-contact-card-title {
    font-size: 1.8rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-contact-card-text {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-xl);
    color: var(--ost-gray-dark);
}

.ost-contact-methods {
    margin-top: var(--ost-space-xl);
}

.ost-contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--ost-space-lg);
}

.ost-contact-method:last-child {
    margin-bottom: 0;
}

.ost-contact-method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--ost-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--ost-space-lg);
    flex-shrink: 0;
    color: var(--ost-primary);
    font-size: 1.3rem;
}

.ost-contact-method:nth-child(2) .ost-contact-method-icon {
    color: var(--ost-secondary);
}

.ost-contact-method:nth-child(3) .ost-contact-method-icon {
    color: var(--ost-accent-2);
}

.ost-contact-method:nth-child(4) .ost-contact-method-icon {
    color: var(--ost-accent-1);
}

.ost-contact-method-details {
    flex-grow: 1;
}

.ost-contact-method-title {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-xs);
    color: var(--ost-gray-dark);
}

.ost-contact-method-value {
    font-size: 1rem;
    color: var(--ost-gray-dark);
    margin-bottom: 0;
}

.ost-contact-form-card {
    background-color: white;
    padding: var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
}

.ost-contact-page-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ost-space-lg);
}

.ost-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--ost-space-md) center;
    padding-right: var(--ost-space-xl);
}

/* Mapa */
.ost-map {
    padding: var(--ost-space-xxl) 0 0;
    background-color: var(--ost-off-white);
}

.ost-map-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--ost-space-xl);
    color: var(--ost-gray-dark);
}

.ost-map-container {
    height: 450px;
    width: 100%;
}

.ost-map-container iframe {
    border: none;
    height: 100%;
    width: 100%;
}

/*=================================
  18. Páginas legales
=================================*/
.ost-legal-content {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
}

.ost-legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    background-color: white;
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    padding: var(--ost-space-xl);
}

.ost-legal-date {
    margin-bottom: var(--ost-space-xl);
    text-align: right;
    font-style: italic;
    color: var(--ost-gray-dark);
    opacity: 0.7;
}

.ost-legal-section {
    margin-bottom: var(--ost-space-xl);
}

.ost-legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
    border-bottom: 1px solid var(--ost-gray-light);
    padding-bottom: var(--ost-space-sm);
}

.ost-legal-section h3 {
    font-size: 1.2rem;
    margin-top: var(--ost-space-lg);
    margin-bottom: var(--ost-space-md);
    color: var(--ost-gray-dark);
}

.ost-legal-section p,
.ost-legal-section li {
    font-size: 1rem;
    color: var(--ost-gray-dark);
}

.ost-legal-section ul {
    list-style: disc;
    padding-left: var(--ost-space-xl);
    margin-bottom: var(--ost-space-lg);
}

.ost-legal-section a {
    color: var(--ost-primary);
    text-decoration: underline;
}

.ost-legal-section a:hover {
    color: var(--ost-accent-3);
}

.ost-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--ost-space-lg);
}

.ost-cookie-table th,
.ost-cookie-table td {
    padding: var(--ost-space-sm) var(--ost-space-md);
    border: 1px solid var(--ost-gray-light);
    text-align: left;
    font-size: 0.9rem;
}

.ost-cookie-table th {
    background-color: var(--ost-off-white);
    font-weight: 600;
}

.ost-cookie-table tr:nth-child(even) {
    background-color: var(--ost-off-white);
}

/*=================================
  19. Página de agradecimiento
=================================*/
.ost-thanks {
    padding: var(--ost-space-xxl) 0;
    background-color: var(--ost-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.ost-thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--ost-space-lg);
    background-color: white;
    border-radius: var(--ost-border-radius);
    box-shadow: var(--ost-box-shadow);
    padding: var(--ost-space-xl);
    text-align: center;
}

.ost-thanks-icon {
    font-size: 4rem;
    color: var(--ost-secondary);
    margin-bottom: var(--ost-space-lg);
}

.ost-thanks-title {
    font-size: 2rem;
    margin-bottom: var(--ost-space-lg);
    color: var(--ost-gray-dark);
}

.ost-thanks-text {
    font-size: 1.1rem;
    margin-bottom: var(--ost-space-xl);
    color: var(--ost-gray-dark);
}

.ost-thanks-details {
    padding: var(--ost-space-lg);
    background-color: var(--ost-off-white);
    border-radius: var(--ost-border-radius);
    margin-bottom: var(--ost-space-xl);
}

.ost-thanks-details p {
    margin-bottom: 0;
}

.ost-thanks-actions {
    display: flex;
    justify-content: center;
    gap: var(--ost-space-md);
}

.ost-thanks-button {
    background-color: var(--ost-primary);
    color: white;
    padding: var(--ost-space-md) var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    font-weight: 500;
    transition: var(--ost-transition);
}

.ost-thanks-button:hover {
    background-color: var(--ost-accent-3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ost-thanks-button-alt {
    background-color: transparent;
    color: var(--ost-gray-dark);
    padding: var(--ost-space-md) var(--ost-space-xl);
    border-radius: var(--ost-border-radius);
    font-weight: 500;
    border: 1px solid var(--ost-gray-light);
    transition: var(--ost-transition);
}

.ost-thanks-button-alt:hover {
    background-color: var(--ost-gray-light);
    color: var(--ost-gray-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/*=================================
  20. Media Queries
=================================*/
@media (max-width: 1200px) {
    .ost-showcase-title {
        font-size: 2.5rem;
    }
    
    .ost-process-title,
    .ost-contact-title,
    .ost-benefits-title,
    .ost-intro-title {
        font-size: 2rem;
    }
    
    .ost-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .ost-showcase-content,
    .ost-process-content,
    .ost-intro-content,
    .ost-contact-wrapper,
    .ost-benefits-wrapper,
    .ost-workflow-diagram {
        grid-template-columns: 1fr;
    }
    
    .ost-showcase-text,
    .ost-process-text,
    .ost-intro-text,
    .ost-contact-info,
    .ost-benefits-content {
        padding-right: 0;
        margin-bottom: var(--ost-space-xl);
    }
    
    .ost-showcase-text,
    .ost-showcase-image {
        transform: none;
    }
    
    .ost-feature-large {
        grid-template-columns: 1fr;
    }
    
    .ost-case-item {
        grid-template-columns: 1fr;
    }
    
    .ost-case-image {
        height: 300px;
    }
    
    .ost-contact-main-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .ost-nav {
        display: none;
    }
    
    .ost-menu-toggle {
        display: block;
    }
    
    .ost-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ost-stat-item::after {
        display: none;
    }
    
    .ost-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ost-feature-block:nth-child(3),
    .ost-feature-block:nth-child(4) {
        transform: none;
    }
    
    .ost-footer-top {
        grid-template-columns: 1fr;
    }
    
    .ost-footer-links {
        grid-template-columns: 1fr;
    }
    
    .ost-pillar-item {
        flex-direction: column;
    }
    
    .ost-pillar-number {
        width: 100%;
        padding: var(--ost-space-md);
    }
    
    .ost-contact-form,
    .ost-contact-page-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .ost-showcase-title {
        font-size: 2rem;
    }
    
    .ost-section-title {
        font-size: 1.8rem;
    }
    
    .ost-stats-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ost-cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .ost-cookie-buttons {
        flex-direction: column;
        gap: var(--ost-space-sm);
    }
    
    .ost-cookie-button {
        width: 100%;
    }
    
    .ost-thanks-actions {
        flex-direction: column;
    }
}

/* Intl-tel-input custom styles */
.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 10;
}