@font-face {
    font-family: 'Nohemi';
    src: url('./Rescursos/Tipografia/Nohemi-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Nohemi';
    src: url('./Rescursos/Tipografia/Nohemi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nohemi';
    src: url('./Rescursos/Tipografia/Nohemi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Nohemi';
    src: url('./Rescursos/Tipografia/Nohemi-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Nohemi';
    src: url('./Rescursos/Tipografia/Nohemi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nohemi';
    src: url('./Rescursos/Tipografia/Nohemi-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary-color: #b51a37;
    /* Dark red based on the image */
    --primary-hover: #911229;
    --text-main: #1d1d1f;
    --text-muted: #555555;
    --bg-main: #f5f5f7;
    --bg-card: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-radius-lg: 32px;
    --border-radius-md: 20px;
    --border-radius-sm: 12px;
    --border-radius-pill: 100px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08);

    --transition-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Nohemi', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    background-image: radial-gradient(circle at 50% 0%, #ffffff 0%, var(--bg-main) 60%);
    background-repeat: no-repeat;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

p {
    color: var(--text-muted);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-primary {
    color: var(--primary-color);
}

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

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 26, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header/Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding: 16px 0;
}

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

.logo-gdpymes {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.04em;
}

.header-cta {
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Sections */
section {
    padding: 120px 0;
}

/* Section Titles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Base Card */
.card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Offset header */
    position: relative;
    overflow: hidden;
}

.hero-content {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 80px 48px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
}

.sticker-red {
    position: absolute;
    top: 48px;
    right: 48px;
    width: 160px;
    height: 160px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(10deg);
    box-shadow: var(--shadow-md);
    line-height: 1.1;
    z-index: 10;
}

.sticker-red span {
    font-size: 1.25rem;
    font-weight: 500;
}

.sticker-red strong {
    font-size: 2.25rem;
    font-weight: 900;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 16px;
    font-weight: 900;
    max-width: 600px;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.hero p.subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 32px;
    max-width: 600px;
    font-weight: 500;
    margin-left: 0;
    margin-right: 0;
}

.hero-list {
    margin-bottom: 32px;
}

.hero-list li {
    font-size: 1.125rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-muted);
}

.hero-list li span {
    color: var(--text-main);
    font-weight: bold;
}

.hero-list li strong {
    color: var(--text-main);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.highlight-pill {
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.pill-dark {
    background: #1d1d1f;
    color: white;
}

.pill-outline-red {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.pill-red {
    background: var(--primary-color);
    color: white;
}

.pill-gray {
    background: #e2e2e5;
    color: var(--text-main);
}


/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--text-main);
    color: white;
    padding: 16px 0;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.marquee-content .separator {
    color: var(--primary-color);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Image background elements */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.bg-blob-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(181, 26, 55, 0.15);
}

.bg-blob-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(200, 200, 200, 0.3);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(181, 26, 55, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-item h3 {
    font-size: 1.25rem;
    color: var(--text-main);
}

/* Itineraries */
.itineraries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.itinerary-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.itinerary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.itinerary-card:hover::before {
    transform: scaleX(1);
}

.itinerary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* Courses */
.courses-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.course-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.course-header h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.course-desc {
    font-size: 1.125rem;
}

.course-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.course-block-item {
    background: var(--bg-main);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.course-block-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.course-block-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* Requirements & Docs */
.req-docs-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.req-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: var(--text-main);
}

.req-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Form */
.form-section {
    background: var(--text-main);
    color: white;
    padding: 120px 0;
}

.form-section .section-title {
    color: white;
}

.form-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.gdpymes-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    /*display: grid;*/
    grid-template-columns: 1fr 1fr;
    /*gap: 24px;*/
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-control option {
    background: var(--text-main);
    color: white;
}

.form-submit {
    margin-top: 24px;
    width: 100%;
}

/* Logos */
.logos-section {
    padding: 64px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: white;
}

.logos-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    /* Small gap for mobile */
    width: 100%;
}

.logo-img {
    height: auto;
    max-height: 40px;
    /* Small enough for mobile height */
    max-width: 18%;
    /* Ensure that 5 icons with small gap fit in one row */
    object-fit: contain;
    flex-shrink: 1;
    transition: transform var(--transition-fast);
}

@media (min-width: 768px) {
    .logos-container {
        gap: 32px;
    }

    .logo-img {
        max-height: 60px;
        max-width: 18%;
    }
}


.logo-img:hover {
    transform: scale(1.05);
}

/* CTA Footer */
.final-cta {
    text-align: center;
    padding: 120px 0;
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.sticker-red-resp{display:none;}
/* Responsive */
@media (max-width: 1024px) {
    .itineraries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
.sticker-red {display:none}
.sticker-red-resp{display:block;
                 background-color: #b51a37; 
                  color:#fff; 
                  width:180px;
                  padding:10px;
                  font-size:20px;
                 }

}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p.subtitle {
        font-size: 1.25rem;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .itineraries-grid {
        grid-template-columns: 1fr;
    }

    .req-docs-wrap {
        grid-template-columns: 1fr;
    }

    .gdpymes-form {
        grid-template-columns: 1fr;
        padding: 0px 0px;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

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

